Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3 to 4 (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jan 24, 2024
1 parent 2be08e3 commit 64b52f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chocolatey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: '14'

- name: Cache bigger downloads
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
echo '::echo::off'
shell: bash
- name: Cache webui
uses: actions/cache@v3
uses: actions/cache@v4
id: webui-cache
with:
path: assets/webui
key: ${{ steps.read-webui-version.outputs.cid }}

- name: Cache bigger downloads
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
if: steps.webui-cache.outputs.cache-hit != 'true'
with:
Expand Down Expand Up @@ -94,14 +94,14 @@ jobs:
run: echo "cid=$(grep "build:webui:download" package.json | grep -Eio "bafy[a-z0-9]+")" >> $GITHUB_OUTPUT
shell: bash
- name: Cache webui
uses: actions/cache@v3
uses: actions/cache@v4
id: webui-cache
with:
path: assets/webui
key: ${{ steps.read-webui-version.outputs.cid }}

- name: Cache bigger downloads
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
Expand Down Expand Up @@ -161,14 +161,14 @@ jobs:
run: echo "cid=$(grep "build:webui:download" package.json | grep -Eio "bafy[a-z0-9]+")" >> $GITHUB_OUTPUT
shell: bash
- name: Cache webui
uses: actions/cache@v3
uses: actions/cache@v4
id: webui-cache
with:
path: assets/webui
key: ${{ steps.read-webui-version.outputs.cid }}

- name: Cache bigger downloads
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: ${{ github.workspace }}/.cache
Expand Down

0 comments on commit 64b52f6

Please sign in to comment.