Skip to content

Commit

Permalink
Merge pull request #1396 from nextstrain/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/cache-4

chore(deps): bump actions/cache from 3 to 4
  • Loading branch information
corneliusroemer authored Jan 30, 2024
2 parents e0752b4 + dbe2d83 commit 90638ad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: echo "checksum=$(./scripts/docker_build_checksum.sh)" >> $GITHUB_OUTPUT

- name: "Setup cache for Docker buildx"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/docker/buildx
key: cache-v1-buildx-${{ runner.os }}-${{ steps.docker-build-checksum.outputs.checksum }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: echo "checksum=$(./scripts/docker_build_checksum.sh)" >> $GITHUB_OUTPUT

- name: "Setup cache for Docker buildx (${{ matrix.arch }})"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/docker/buildx
key: cache-v1-buildx-${{ runner.os }}-${{ matrix.arch }}-${{ steps.docker-build-checksum.outputs.checksum }}
Expand All @@ -91,7 +91,7 @@ jobs:
cache-v1-buildx-${{ runner.os }}-
- name: "Setup cache for Rust and Cargo"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.cache/docker/.cargo
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
run: echo "checksum=$(./scripts/docker_build_checksum.sh)" >> $GITHUB_OUTPUT

- name: "Setup cache for Docker buildx"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/docker/buildx
key: cache-v1-buildx-unit-tests-${{ runner.os }}-${{ steps.docker-build-checksum.outputs.checksum }}
Expand All @@ -168,7 +168,7 @@ jobs:
cache-v1-buildx-unit-tests-${{ runner.os }}-
- name: "Setup cache for Rust and Cargo"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.cache/docker/.cargo
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
run: echo "checksum=$(./scripts/docker_build_checksum.sh)" >> $GITHUB_OUTPUT

- name: "Setup cache for Docker buildx"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/docker/buildx
key: cache-v1-buildx-lints-${{ runner.os }}-${{ steps.docker-build-checksum.outputs.checksum }}
Expand All @@ -214,7 +214,7 @@ jobs:
cache-v1-buildx-lints-${{ runner.os }}-
- name: "Setup cache for Rust and Cargo"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.cache/docker/.cargo
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: echo "checksum=$(./scripts/docker_build_checksum.sh)" >> $GITHUB_OUTPUT

- name: "Setup cache for Docker buildx"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .cache/docker/buildx
key: cache-v1-buildx-${{ runner.os }}-wasm32-unknown-unknown-${{ steps.docker-build-checksum.outputs.checksum }}
Expand All @@ -78,7 +78,7 @@ jobs:
cache-v1-buildx-${{ runner.os }}-
- name: "Setup cache for Rust and Cargo"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.build/
Expand All @@ -91,7 +91,7 @@ jobs:
cache-v1-cargo-${{ runner.os }}-
- name: "Setup cache for web app"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
packages_rs/nextclade-web/.build/production/tmp/cache
Expand Down

0 comments on commit 90638ad

Please sign in to comment.