Skip to content

Commit 99108fb

Browse files
Bump actions/upload-artifact from 4 to 5
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] <support@github.com>
1 parent 01887b7 commit 99108fb

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@v4
120+
uses: actions/upload-artifact@v5
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@v4
145+
uses: actions/upload-artifact@v5
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 --dotnetcoresdk=$(dotnet --version) --output="$inspectCodeOutputPath" --format="xml" --profile=WarningSeverities.DotSettings --properties:Configuration=Release --properties:ContinuousIntegrationBuild=false --properties:RunAnalyzers=false --severity=WARNING --verbosity=WARN -dsl=GlobalAll -dsl=GlobalPerProduct -dsl=SolutionPersonal -dsl=ProjectPersonal
182182
- name: Upload output to artifacts
183-
uses: actions/upload-artifact@v4
183+
uses: actions/upload-artifact@v5
184184
with:
185185
name: InspectCode-${{ matrix.os }}
186186
path: ${{ env.INSPECT_CODE_OUTPUT_PATH }}

0 commit comments

Comments
 (0)