Skip to content

Bump actions/download-artifact from 4 to 5 #1230

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

Merged
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
- name: Confirm z3 solver is available and log the version installed
run: z3 --version
- name: Get the ebmc binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ebmc-binary
path: ebmc
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Confirm ltl2tgba is available and log the version installed
run: ltl2tgba --version
- name: Get the ebmc binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ebmc-binary
path: ebmc
Expand All @@ -209,7 +209,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Get the ebmc binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ebmc-binary
path: ebmc
Expand All @@ -218,7 +218,7 @@ jobs:
- name: ebmc on Hazard3
run: PATH=$PATH:$PWD/ebmc examples/Hazard3/Hazard3-ebmc.sh
- name: Get the vlindex binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: vlindex-binary
path: vlindex
Expand Down Expand Up @@ -483,17 +483,17 @@ jobs:
- name: Confirm z3 solver is available and log the version installed
run: z3 --version
- name: Get the ebmc binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ebmc-binary
path: bin
- name: Get the hw-cbmc binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: hw-cbmc-binary
path: bin
- name: Get the vlindex binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: vlindex-binary
path: bin
Expand Down
Loading