Skip to content

Commit f7b99e9

Browse files
committed
Update actions/checkout in GitHub Actions workflows to v4
1 parent 9a25bc0 commit f7b99e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
os: windows-2022
3030
rust: stable-x86_64-gnu
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- name: Install Rust (rustup)
3434
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
3535
shell: bash
@@ -58,7 +58,7 @@ jobs:
5858
name: Rustfmt
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6262
- name: Install Rust
6363
run: rustup update stable && rustup default stable && rustup component add rustfmt
6464
- run: cargo fmt -- --check
@@ -70,7 +70,7 @@ jobs:
7070
matrix:
7171
target: [wasm32-unknown-unknown, wasm32-wasi]
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
- name: Install Rust
7575
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
7676
- run: cargo build --target ${{ matrix.target }}

0 commit comments

Comments
 (0)