Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.0.1 #329

Merged
merged 26 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c37693f
Bump actions/cache from 3.2.2 to 3.3.0 (#190)
dependabot[bot] Mar 15, 2023
69fec3f
Bump gittools/actions from 0.9.15 to 0.10.2 (#189)
dependabot[bot] Mar 15, 2023
aa5526a
Bump AWSSDK.SecurityToken from 3.7.101.22 to 3.7.101.24 (#194)
dependabot[bot] Mar 15, 2023
f321edd
Bump AWSSDK.S3 from 3.7.103.24 to 3.7.103.27 (#199)
dependabot[bot] Mar 15, 2023
3dc4114
Remove reference of .NET packages
mocsharp Mar 16, 2023
292cc0c
Update license approvals
mocsharp Mar 16, 2023
17391e4
Remove duplicate section of CodeQL scan
mocsharp Mar 16, 2023
eb9560a
fix up ci
neildsouth Mar 14, 2023
869df4d
Merge pull request #200 from Project-MONAI/vchang/fix-packages
neildsouth Mar 16, 2023
356d6c2
merge
neildsouth Mar 16, 2023
7fad579
merge in develop
neildsouth Mar 16, 2023
e7f640e
Merge pull request #205 from Project-MONAI/main-to-develop
neildsouth Mar 16, 2023
1757165
Throw any error from MinIO with ListObject APIs (#214)
mocsharp Apr 6, 2023
3e94624
Update dependencies (#241)
mocsharp Aug 10, 2023
9a3223b
Merge branch 'main' into develop
mocsharp Aug 10, 2023
6896810
Remove unused references (#243)
mocsharp Aug 12, 2023
fe9414b
Upgrade to .NET 8 (#281)
mocsharp Jan 2, 2024
d1e56ad
Bump codecov/codecov-action from 3.1.1 to 3.1.4 (#232)
dependabot[bot] Jan 5, 2024
7b47afc
Bump apache/skywalking-eyes from 0.4.0 to 0.5.0 (#245)
dependabot[bot] Jan 5, 2024
c8e099f
Bump actions/checkout from 3 to 4 (#246)
dependabot[bot] Jan 5, 2024
dc27bc1
Bump actions/cache from 3.3.0 to 3.3.2 (#247)
dependabot[bot] Jan 5, 2024
2361edd
Bump actions/upload-artifact from 3.1.2 to 4.0.0 (#278)
dependabot[bot] Jan 5, 2024
e11f5a3
Update mc commands (#328)
mocsharp Jun 12, 2024
2dc8acc
Merge branch 'main' into release/1.0.1
mocsharp Jun 12, 2024
cd581da
Update codecov/[email protected]
mocsharp Jun 12, 2024
19eb498
Fix codecov copyright
mocsharp Jun 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2022 MONAI Consortium
# SPDX-FileCopyrightText: © 2022-2024 MONAI Consortium
# SPDX-License-Identifier: Apache License 2.0

name: ci
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -43,15 +43,15 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/cache@v3.3.0
uses: actions/cache@v4.0.2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: csharp

Expand All @@ -64,7 +64,7 @@ jobs:
working-directory: ./src

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

analyze:
runs-on: ubuntu-latest
Expand All @@ -79,7 +79,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v3
Expand All @@ -95,7 +95,7 @@ jobs:
tools: licensefinder

- name: Enable NuGet cache
uses: actions/cache@v3.3.0
uses: actions/cache@v4.0.2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand All @@ -117,30 +117,30 @@ jobs:
run: license_finder -r

- name: Check License Header
uses: apache/skywalking-eyes@v0.4.0
uses: apache/skywalking-eyes@v0.6.0

unit-test:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/cache@v3.3.0
uses: actions/cache@v4.0.2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
docker volume rm tests_minio_config
working-directory: ./src/Plugins/MinIO/Tests

- uses: codecov/codecov-action@v3.1.1
- uses: codecov/codecov-action@v4.4.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: "src/"
Expand All @@ -206,7 +206,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
fail-fast: true

permissions:
Expand All @@ -217,7 +217,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -226,7 +226,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/cache@v3.3.0
uses: actions/cache@v4.0.2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -278,15 +278,15 @@ jobs:

- name: Upload Nuget
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.0.0
with:
name: nuget
path: ${{ github.workspace }}/release/*.nupkg
retention-days: 30

- name: Upload Zipped Plug-ins
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.0.0
with:
name: plug-ins
path: ${{ github.workspace }}/src/Plugins/release/*.zip
Expand All @@ -298,7 +298,7 @@ jobs:
needs: [build, unit-test]
if: ${{ ! ( github.event.inputs.nuget ) && ! ( contains(github.ref, 'refs/heads/main') ) }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
id: download

- name: List artifacts
Expand All @@ -323,7 +323,7 @@ jobs:
needs: [build, unit-test]
if: ${{ github.event.inputs.nuget }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
id: download

- name: List artifacts
Expand Down Expand Up @@ -351,11 +351,11 @@ jobs:
MAJORMINORPATCH: ${{ needs.build.outputs.majorMinorPatch }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
id: download

- name: List artifacts
Expand Down Expand Up @@ -404,4 +404,4 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
owner: ${{ steps.repo.outputs._0 }}
repository: ${{ steps.repo.outputs._1 }}
milestone: ${{ env.MAJORMINORPATCH }}
milestone: ${{ env.MAJORMINORPATCH }}
2 changes: 2 additions & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ header:
license:
spdx-id: Apache-2.0
copyright-owner: MONAI Consortium
copyright-year: '2021-2024'


paths:
- 'src'
Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: © 2021-2022 MONAI Consortium
# SPDX-FileCopyrightText: © 2021-2024 MONAI Consortium
# SPDX-License-Identifier: Apache License 2.0

codecov:
Expand Down
Loading
Loading