Skip to content

Commit 58b8470

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] <support@github.com>
1 parent 3fb88a2 commit 58b8470

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
run: dotnet pack --no-build --configuration Release --output ${{ github.workspace }}/artifacts/packages /p:VersionSuffix=${{ env.PACKAGE_VERSION_SUFFIX }}
118118
- name: Upload packages to artifacts
119119
if: ${{ matrix.os == 'ubuntu-latest' }}
120-
uses: actions/upload-artifact@v5
120+
uses: actions/upload-artifact@v6
121121
with:
122122
name: packages
123123
path: artifacts/packages
@@ -142,7 +142,7 @@ jobs:
142142
Copy-Item -Recurse home/assets/* _site/styles/
143143
- name: Upload documentation to artifacts
144144
if: ${{ matrix.os == 'ubuntu-latest' }}
145-
uses: actions/upload-artifact@v5
145+
uses: actions/upload-artifact@v6
146146
with:
147147
name: documentation
148148
path: docs/_site
@@ -180,7 +180,7 @@ jobs:
180180
dotnet jb inspectcode --version
181181
dotnet jb inspectcode $env:SOLUTION_FILE --build --no-updates --dotnetcoresdk=$(dotnet --version) --output="$inspectCodeOutputPath" --format="xml" --settings=WarningSeverities.DotSettings --properties:"Configuration=Release;RunAnalyzers=false;NuGetAudit=false;ContinuousIntegrationBuild=false" --severity=WARNING --verbosity=WARN --disable-settings-layers="GlobalAll;GlobalPerProduct;SolutionPersonal;ProjectPersonal"
182182
- name: Upload output to artifacts
183-
uses: actions/upload-artifact@v5
183+
uses: actions/upload-artifact@v6
184184
with:
185185
name: InspectCode-${{ matrix.os }}
186186
path: ${{ env.INSPECT_CODE_OUTPUT_PATH }}

0 commit comments

Comments
 (0)