Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install radare2
run: |
brew install radare2
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Check
# boolector-sys needs an external boolector.lib on x86_64-pc-windows-msvc.
# Keep Windows compile coverage without requiring an unsupported final link.
Expand All @@ -82,7 +82,7 @@ jobs:
needs: [build-linux, build-macos, build-windows]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download all artifacts
uses: actions/download-artifact@v8
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install radare2
run: |
brew install radare2
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Check
# boolector-sys needs an external boolector.lib on x86_64-pc-windows-msvc.
# Keep Windows compile coverage without requiring an unsupported final link.
Expand Down
Loading