Skip to content

Commit

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

Bump actions/cache from 3 to 4
  • Loading branch information
mruoss committed Jan 22, 2024
2 parents a5c7c21 + 797dfcc commit c257d74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
install-hex: true

- name: Retrieve Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: build-folder-cache
with:
path: _build
key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Retrieve Mix Dependencies Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: mix-cache
with:
path: deps
key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Retrieve PLT Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: plt-cache
with:
key: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/elixir_matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
install-hex: true

- name: Retrieve Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: build-folder-cache
with:
path: _build
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Retrieve Mix Dependencies Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: mix-cache
with:
path: deps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k8s_matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
install-hex: true

- name: Retrieve Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: build-folder-cache
with:
path: _build
key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}

- name: Retrieve Mix Dependencies Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: mix-cache
with:
path: deps
Expand Down

0 comments on commit c257d74

Please sign in to comment.