Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#4385)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 20, 2024
1 parent 19d0e61 commit 74594d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
cache-dependency-path: web/yarn.lock

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/web/node_modules
key: ${{ runner.os }}-${{ runner.arch }}-yarn-node_modules-${{ hashFiles('web/yarn.lock') }}
Expand All @@ -96,7 +96,7 @@ jobs:
cache-dependency-path: web/yarn.lock

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/web/node_modules
key: ${{ runner.os }}-${{ runner.arch }}-yarn-node_modules-${{ hashFiles('web/yarn.lock') }}
Expand All @@ -123,7 +123,7 @@ jobs:
cache-dependency-path: web/yarn.lock

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/web/node_modules
key: ${{ runner.os }}-${{ runner.arch }}-yarn-node_modules-${{ hashFiles('web/yarn.lock') }}
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
cache-dependency-path: web/yarn.lock

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/web/node_modules
key: ${{ runner.os }}-${{ runner.arch }}-yarn-node_modules-${{ hashFiles('web/yarn.lock') }}
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Cache Go modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Go modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
uses: actions/checkout@v4

- name: Cache Go modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down

0 comments on commit 74594d2

Please sign in to comment.