Skip to content

Commit

Permalink
Bump actions/cache from 3.0.1 to 3.2.5
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.2.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@136d96b...6998d13)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 15, 2023
1 parent 4d86c59 commit 5497e7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
with:
node-version: "${{ steps.parse-node-version.outputs.NVMRC }}"
- name: Cache build directories
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: |
node_modules
govuk_modules
public
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}
- name: Cache pacts directory
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: pacts
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}-pacts
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ jobs:
with:
node-version: ${{ needs.version.outputs.node-version }}
- name: Cache build directories
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: |
node_modules
govuk_modules
public
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}
- name: Cache NPM packages
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -56,7 +56,7 @@ jobs:
id: parse-cypress-version
run: echo "CYPRESS_VERSION=$(jq -r '.devDependencies.cypress' package.json)" >> $GITHUB_OUTPUT
- name: Cache Cypress
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-cypress-${{ steps.parse-cypress-version.outputs.CYPRESS_VERSION }}
Expand All @@ -80,15 +80,15 @@ jobs:
with:
node-version: ${{ needs.version.outputs.node-version }}
- name: Cache build directories
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: |
node_modules
govuk_modules
public
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}
- name: Cache pacts directory
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: pacts
key: ${{ runner.os }}-build-id-${{ github.head_ref }}-${{ github.sha }}-pacts
Expand All @@ -108,7 +108,7 @@ jobs:
with:
node-version: ${{ needs.version.outputs.node-version }}
- name: Cache build directories
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: |
node_modules
Expand All @@ -119,7 +119,7 @@ jobs:
id: parse-cypress-version
run: echo "CYPRESS_VERSION=$(jq -r '.devDependencies.cypress' package.json)" >> $GITHUB_OUTPUT
- name: Cache Cypress
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0
uses: actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-cypress-${{ steps.parse-cypress-version.outputs.CYPRESS_VERSION }}
Expand Down

0 comments on commit 5497e7c

Please sign in to comment.