Skip to content

Commit

Permalink
chore(ci): upgrade actions/checkout to 3
Browse files Browse the repository at this point in the history
Addresses the "Node.js 12 actions are deprecated" warnings.
  • Loading branch information
yvt committed Nov 12, 2022
1 parent 5854d6e commit ca9a16b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust
# FIXME: Switch back when actions-rs/toolchain#{209,220,222} is merged
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install dependencies (Linux)
run: sudo snap install deno
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
- { ty: riscv, runner_target: qemu_sifive_e_rv32, runner_args: --arch rv32i+a }
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust
# FIXME: Switch back when actions-rs/toolchain#{209,220,222} is merged
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
- { ty: riscv, runner_target: maix, runner_args: "", bench: "bench" }
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust
# FIXME: Switch back when actions-rs/toolchain#{209,220,222} is merged
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust
# FIXME: Switch back when actions-rs/toolchain#{209,220,222} is merged
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- { ty: riscv, runner_target: qemu_sifive_e_rv32, runner_args: "" }
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust
# FIXME: Switch back when actions-rs/toolchain#{209,220,222} is merged
Expand Down

0 comments on commit ca9a16b

Please sign in to comment.