Skip to content

Commit

Permalink
github/workflows: Update to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed Dec 7, 2023
1 parent 690481e commit ff8027f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu }

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install toolchain
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable && rustup default stable
- name: Install rustfmt
Expand All @@ -16,7 +16,7 @@ jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable && rustup default stable
- name: Install clippy
Expand All @@ -26,7 +26,7 @@ jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Rust
run: rustup update stable && rustup default stable
- run: cargo test

0 comments on commit ff8027f

Please sign in to comment.