Skip to content

Commit f4bfcd6

Browse files
authored
Fix publish-nightly failures (#2695)
* Update upload-artifact version to fix github action error. * Update checkout.
1 parent 21da339 commit f4bfcd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-nightly.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: ${{ github.repository == 'dotnet/BenchmarkDotNet' }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set date
1616
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
1717
- name: Pack
1818
run: ./build.cmd pack /p:VersionSuffix=nightly.$DATE.$GITHUB_RUN_NUMBER
1919
- name: Upload nupkg to artifacts
20-
uses: actions/upload-artifact@v3
20+
uses: actions/upload-artifact@v4
2121
with:
2222
name: nupkgs
2323
path: "**/*.*nupkg"

0 commit comments

Comments
 (0)