Skip to content

chore(deps): bump actions/checkout from 4 to 5 #1472

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/assertoor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
ethereum-testnet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Build native libraries
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Go
# NOTE: this action comes with caching by default
uses: actions/setup-go@v5
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
name: Download Beacon Node OAPI
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache Beacon Node OAPI
id: output-cache
uses: actions/cache@v4
Expand All @@ -77,7 +77,7 @@ jobs:
needs: [compile-native, download-beacon-node-oapi]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Elixir
id: setup-beam
uses: erlef/setup-beam@v1
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
name: Build Docker image
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
Expand All @@ -152,7 +152,7 @@ jobs:
needs: [compile-native, download-beacon-node-oapi]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
needs: [compile-native, download-beacon-node-oapi]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
name: Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
name: Download spectests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache compressed spectests
id: output-cache
uses: actions/cache@v4
Expand All @@ -297,7 +297,7 @@ jobs:
config: ["minimal", "general", "mainnet"]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
Expand Down
Loading