Skip to content

Commit 3473521

Browse files
Bump actions/upload-artifact from 5 to 6 (#1986)
1 parent ce56d7a commit 3473521

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Upload
26-
uses: actions/upload-artifact@v5
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: Event File
2929
path: ${{ github.event_path }}
@@ -97,7 +97,7 @@ jobs:
9797
run: dotnet test --no-restore -- --results-directory ${{ github.workspace }}/test-results/ --report-xunit-trx
9898
- name: Upload Test Results
9999
if: always()
100-
uses: actions/upload-artifact@v5
100+
uses: actions/upload-artifact@v6
101101
with:
102102
name: Test Results (${{ matrix.os }} ${{ matrix.configuration }} ${{ matrix.projectloadstyle }})
103103
path: ${{ github.workspace }}/test-results/*

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Upload Test Results
6565
if: always()
66-
uses: actions/upload-artifact@v5
66+
uses: actions/upload-artifact@v6
6767
with:
6868
name: Code Coverage
6969
path: coveragereport/*

.github/workflows/package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Pack
8383
run: dotnet pack --no-build
8484
- name: Upload
85-
uses: actions/upload-artifact@v5
85+
uses: actions/upload-artifact@v6
8686
with:
8787
name: Unsigned
8888
path: "artifacts/package/${{ env.Configuration }}/*"
@@ -148,7 +148,7 @@ jobs:
148148
--azure-key-vault-certificate "${{ secrets.SignKeyVaultCertificate }}"
149149
--azure-key-vault-url "${{ secrets.SignKeyVaultUrl }}"
150150
151-
- uses: actions/upload-artifact@v5
151+
- uses: actions/upload-artifact@v6
152152
with:
153153
name: Signed
154154
path: |
@@ -184,7 +184,7 @@ jobs:
184184
run: >
185185
echo ${{ github.event_name == 'release' }} >> release-info.txt
186186
- name: Upload Release Info
187-
uses: actions/upload-artifact@v5
187+
uses: actions/upload-artifact@v6
188188
with:
189189
name: release-info
190190
path: release-info.txt

0 commit comments

Comments
 (0)