Skip to content

Commit 7afe2c8

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 2366db8 commit 7afe2c8

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
@@ -113,7 +113,7 @@ jobs:
113113
run: dotnet pack --no-build --configuration Release --output ${{ github.workspace }}/artifacts/packages /p:VersionSuffix=${{ env.PACKAGE_VERSION_SUFFIX }}
114114
- name: Upload packages to artifacts
115115
if: ${{ matrix.os == 'ubuntu-latest' }}
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v5
117117
with:
118118
name: packages
119119
path: artifacts/packages
@@ -136,7 +136,7 @@ jobs:
136136
Copy-Item -Recurse home/assets/* _site/styles/
137137
- name: Upload documentation to artifacts
138138
if: ${{ matrix.os == 'ubuntu-latest' }}
139-
uses: actions/upload-artifact@v4
139+
uses: actions/upload-artifact@v5
140140
with:
141141
name: documentation
142142
path: docs/_site
@@ -170,7 +170,7 @@ jobs:
170170
Write-Output "INSPECT_CODE_OUTPUT_PATH=$inspectCodeOutputPath" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
171171
dotnet jb inspectcode JsonApiDotNetCore.sln --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
172172
- name: Upload output to artifacts
173-
uses: actions/upload-artifact@v4
173+
uses: actions/upload-artifact@v5
174174
with:
175175
name: InspectCode-${{ matrix.os }}
176176
path: ${{ env.INSPECT_CODE_OUTPUT_PATH }}

0 commit comments

Comments
 (0)