Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 3 to 4 #2945

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/build-bundle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ runs:
echo "PKG=${{ inputs.os }}-kani-verifier.crate" >> $GITHUB_ENV

- name: Upload bundle
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUNDLE }}
path: ${{ env.BUNDLE }}
Expand All @@ -74,7 +74,7 @@ runs:
retention-days: 3

- name: Upload kani-verifier pkg
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.PKG }}
path: ${{ env.PKG }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Download bundle
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.prev_job.bundle }}

- name: Download kani-verifier crate
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.prev_job.package }}

Expand Down Expand Up @@ -165,12 +165,12 @@ jobs:
path: ${{ env.KANI_SRC }}

- name: Download bundle
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.BUNDLE }}

- name: Download kani-verifier crate
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.PKG }}

Expand Down Expand Up @@ -224,12 +224,12 @@ jobs:
echo "version=${{ env.TAG_VERSION }}" >> $GITHUB_OUTPUT

- name: Download MacOS bundle
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build_bundle_macos.outputs.bundle }}

- name: Download Linux bundle
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build_bundle_linux.outputs.bundle }}

Expand Down