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 actions/checkout from 3 to 4 #1091

Merged
merged 1 commit into from
Jul 29, 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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download dependencies
run: make download-dependencies-axolotl-web
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: install protoc
run: sudo apt-get install protobuf-compiler
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
uses: swatinem/rust-cache@v2

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download axolotl-web build artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
uses: swatinem/rust-cache@v2

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download build-axolotl-web build artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
- build-axolotl-web
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download axolotl-web build artifacts
uses: actions/download-artifact@v4
Expand Down
Loading