Skip to content
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

Bump checkout #1258

Merged
merged 1 commit into from
Sep 14, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup build environment
run: sudo apt install -y clang llvm protobuf-compiler
- name: Cache cargo
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check format
run: cargo fmt --all -- --check
- name: Fast fail
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
with:
node-version: 19
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Action test
run: |
cd tests/ethereum
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build testnets
id: build-testnets
if: ${{ startsWith(github.ref, 'refs/tags/pango') && (matrix.artifact.type == 'testnets') }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- pangoro
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install deps
env:
GOMPLATE_VERSION: v3.11.4
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
needs: [build-package]
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
needs: [build-package, build-runtimes, build-docker-image]
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
needs: [release]
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Tag
uses: olegtarasov/[email protected]
- name: Deploy testnets tracing node
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
swap-size-gb: 8
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build package
uses: ./.github/actions/build
Expand All @@ -57,7 +57,7 @@ jobs:
needs: [build-package]
steps:
- name: Fetch latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Sha
uses: benjlevesque/[email protected]
- name: Docker login
Expand Down
Loading