Skip to content

chore(deps): bump actions/cache from 3 to 4 #715

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
native/libp2p_port/go.sum
- name: Cache output artifacts
id: output-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: priv/native/*
key: ${{ runner.os }}-native-${{ hashFiles('native/**') }}
Expand All @@ -58,7 +58,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache Beacon Node OAPI
id: output-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./beacon-node-oapi.json
key: ${{ runner.os }}-beacon-node-oapi-${{ hashFiles('.oapi_version') }}
Expand All @@ -80,19 +80,19 @@ jobs:
version-file: .tool-versions
- name: Fetch native libraries
id: output-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: priv/native/*
key: ${{ runner.os }}-native-${{ hashFiles('native/**') }}
fail-on-cache-miss: true
- name: Restore dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Fetch beacon node oapi file
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./beacon-node-oapi.json
key: ${{ runner.os }}-beacon-node-oapi-${{ hashFiles('.oapi_version') }}
Expand All @@ -111,7 +111,7 @@ jobs:
- name: Compile Elixir (Warnings as errors)
run: mix compile --warnings-as-errors
- name: Retrieve PLT Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: plt-cache
with:
path: priv/plts
Expand All @@ -137,19 +137,19 @@ jobs:
version-file: .tool-versions
- name: Fetch native libraries
id: output-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: priv/native/*
key: ${{ runner.os }}-native-${{ hashFiles('native/**') }}
fail-on-cache-miss: true
- name: Restore dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Fetch beacon node oapi file
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./beacon-node-oapi.json
key: ${{ runner.os }}-beacon-node-oapi-${{ hashFiles('.oapi_version') }}
Expand Down Expand Up @@ -184,19 +184,19 @@ jobs:
version-file: .tool-versions
- name: Fetch native libraries
id: output-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: priv/native/*
key: ${{ runner.os }}-native-${{ hashFiles('native/**') }}
fail-on-cache-miss: true
- name: Restore dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Fetch beacon node oapi file
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./beacon-node-oapi.json
key: ${{ runner.os }}-beacon-node-oapi-${{ hashFiles('.oapi_version') }}
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
version-type: strict
version-file: .tool-versions
- name: Restore dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
Expand All @@ -246,7 +246,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache compressed spectests
id: output-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./*.tar.gz
key: ${{ runner.os }}-spectest-${{ hashFiles('.spectest_version') }}
Expand All @@ -270,25 +270,25 @@ jobs:
version-type: strict
version-file: .tool-versions
- name: Fetch native libraries
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: priv/native/*
key: ${{ runner.os }}-native-${{ hashFiles('native/**') }}
fail-on-cache-miss: true
- name: Fetch spectest vectors
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./*.tar.gz
key: ${{ runner.os }}-spectest-${{ hashFiles('.spectest_version') }}
fail-on-cache-miss: true
- name: Restore dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Fetch beacon node oapi file
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./beacon-node-oapi.json
key: ${{ runner.os }}-beacon-node-oapi-${{ hashFiles('.oapi_version') }}
Expand Down