Skip to content

Commit

Permalink
CI: Upgrade checkout, cache actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Sep 9, 2024
1 parent 8021814 commit be00509
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/crucible-go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
ghc: 9.8.2
name: crucible-go - GHC v${{ matrix.ghc }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -65,7 +65,7 @@ jobs:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
shell: bash
run: cabal v2-haddock crucible-go

- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/crucible-jvm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
ghc: 9.8.2
name: crucible-jvm - GHC v${{ matrix.ghc }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -65,7 +65,7 @@ jobs:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
shell: bash
run: cabal v2-haddock crucible-jvm

- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/crucible-wasm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
ghc: 9.8.2
name: crucible-wasm - GHC v${{ matrix.ghc }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -65,7 +65,7 @@ jobs:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
shell: bash
run: cabal v2-haddock crucible-wasm

- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/crux-llvm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
ghc: 9.4.8
name: crux-llvm - GHC v${{ matrix.ghc }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -105,7 +105,7 @@ jobs:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
path: crux-llvm-*.tar.gz*
name: crux-llvm-${{ matrix.os }}-${{ matrix.ghc }}

- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/crux-mir-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
# We want Windows soon, but it doesn't need to be now
name: crux-mir - GHC v${{ matrix.ghc }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
override: true
components: rustc-dev

- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
path: crux-mir-*.tar.gz*
name: crux-mir-${{ matrix.os }}-${{ matrix.ghc }}

- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
name: lint
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uc-crux-llvm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-20.04
name: uc-crux-llvm lint
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: false

Expand Down

0 comments on commit be00509

Please sign in to comment.