Skip to content

Commit 867b7f6

Browse files
ci: bump actions/upload-artifact from 4 to 5 (#30)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0b983be commit 867b7f6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Push to NuGet
3939
run: dotnet nuget push ./artifacts/QsNet.$VERSION.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
4040
- name: Upload package artifacts
41-
uses: actions/upload-artifact@v4
41+
uses: actions/upload-artifact@v5
4242
with:
4343
name: QsNet.${{ env.VERSION }}
4444
path: |

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
dotnet pack QsNet/QsNet.csproj -c Release -p:ContinuousIntegrationBuild=true -p:IncludeSymbols=false -p:Version=0.0.0-ci -o $RUNNER_TEMP/nupkg
4646
- name: Upload nupkg artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: qsnet-nupkg
5050
path: ${{ runner.temp }}/nupkg/*.nupkg
@@ -95,15 +95,15 @@ jobs:
9595
- name: Test + Coverage
9696
run: dotnet test --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" --collect "XPlat Code Coverage"
9797
- name: Upload TRX
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v5
9999
if: always()
100100
with:
101101
name: test-results-${{ matrix.dotnet }}
102102
path: '**/*.trx'
103103
overwrite: true
104104
retention-days: 7
105105
- name: Upload raw coverage
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v5
107107
with:
108108
name: coverage-${{ matrix.dotnet }}
109109
path: QsNet.Tests/TestResults/**/*.cobertura.xml
@@ -145,7 +145,7 @@ jobs:
145145
diff -u node.out cs.out > diff.out || (echo "::error::Differences found between Node and C# outputs. See artifact diff.out"; exit 1)
146146
- name: Upload diff artifacts on failure
147147
if: failure()
148-
uses: actions/upload-artifact@v4
148+
uses: actions/upload-artifact@v5
149149
with:
150150
name: comparison-diff
151151
path: |
@@ -429,7 +429,7 @@ jobs:
429429
name: codecov-umbrella
430430
fail_ci_if_error: false
431431
- name: Upload coverage report artifact
432-
uses: actions/upload-artifact@v4
432+
uses: actions/upload-artifact@v5
433433
with:
434434
name: coverage-report
435435
path: coverage/report/

0 commit comments

Comments
 (0)