Skip to content

Commit e1ed023

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4d476c5 commit e1ed023

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
9999
- name: '[Ubuntu] Upload Artifact'
100100
if: matrix.os == 'ubuntu-latest'
101-
uses: actions/upload-artifact@v5
101+
uses: actions/upload-artifact@v6
102102
with:
103103
name: ${{ env.PROJECT_ALIAS }}-ci-${{ github.run_number }}
104104
path: |
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: '[Windows] Upload test coverage report'
125125
if: matrix.os == 'windows-latest'
126-
uses: actions/upload-artifact@v5
126+
uses: actions/upload-artifact@v6
127127
with:
128128
name: ${{ env.PROJECT_ALIAS }}-coverage-ci-${{ github.run_number }}
129129
path: coveragereport/

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: 'Upload test coverage report'
8686
continue-on-error: true
87-
uses: actions/upload-artifact@v5
87+
uses: actions/upload-artifact@v6
8888
with:
8989
name: ${{ env.PROJECT_ALIAS }}.${{ github.event.inputs.new_package_version }}-coverage-${{ env.GITHUB_REF_SLUG }}-${{ github.run_number }}
9090
path: coveragereport/
@@ -95,7 +95,7 @@ jobs:
9595
dotnet pack -c Release --no-build src/${{ env.PROJECT_NAME }}/${{ env.PROJECT_NAME }}.csproj --include-symbols -o ${{ env.ARTIFACT_DIR }}
9696
9797
- name: Upload Artifact
98-
uses: actions/upload-artifact@v5
98+
uses: actions/upload-artifact@v6
9999
with:
100100
name: ${{ env.PROJECT_ALIAS }}.${{ github.event.inputs.new_package_version }}-${{ env.GITHUB_REF_SLUG }}-${{ github.run_number }}
101101
path: |

0 commit comments

Comments
 (0)