Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

chore: update checkout action to v4 #1589

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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# uses: actions/checkout@v4

# # Initializes the CodeQL tools for scanning.
# - name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout polaris
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: polaris
- name: Install Foundry
Expand All @@ -23,7 +23,7 @@ jobs:
cd polaris
forge doc
- name: Checkout docs-monorepo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: berachain/docs-monorepo
token: ${{ secrets.DOCS_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Golang
uses: actions/setup-go@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Golang
uses: actions/setup-go@v4
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Setup Golang
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
needs: ci
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download code coverage results
uses: actions/download-artifact@v2
with:
Expand Down
Loading