Skip to content

Commit

Permalink
update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
narimiran committed Jul 17, 2024
1 parent 922d648 commit b5697b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ jobs:
fi
- name: Upload source archive to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'nim-${{ matrix.setting.commit }}'
path: nim/output/*
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:

- name: Download generated source package
if: steps.built.outputs.cache-hit != 'true'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'nim-${{ matrix.setting.commit }}'
path: source
Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
fi
- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'binaries-${{ matrix.setting.branch }}-${{ matrix.setting.commit }}'
path: '${{ steps.release.outputs.artifact_nativepath }}'
Expand Down Expand Up @@ -475,14 +475,14 @@ jobs:

- name: Download generated source package
if: steps.deploy-cache.outputs.cache-hit != 'true'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'nim-${{ matrix.setting.commit }}'
path: source

- name: Download built binaries from artifacts
if: steps.deploy-cache.outputs.cache-hit != 'true'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: 'binaries-${{ matrix.setting.branch }}-${{ matrix.setting.commit }}'
path: binaries
Expand Down

0 comments on commit b5697b3

Please sign in to comment.