Skip to content

Commit

Permalink
Merge pull request #9 from mruoss/renovate/actions-cache-4.x
Browse files Browse the repository at this point in the history
Update actions/cache action to v4
  • Loading branch information
mruoss authored Jan 17, 2024
2 parents da40e6a + a959706 commit a715e1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
install-hex: true

- name: Retrieve Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: build-folder-cache
with:
path: _build/test
key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-test-${{ 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/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
install-hex: true

- name: Retrieve Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: build-folder-cache
with:
path: _build/test
key: ${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-build-test-${{ 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 a715e1d

Please sign in to comment.