From 2ebe0d8755908eb0ba62eb1103fd3e80abcb1eb2 Mon Sep 17 00:00:00 2001 From: Rajat Jindal Date: Mon, 11 Sep 2023 19:19:09 +0530 Subject: [PATCH] update github action checkout to v3 (#1196) Signed-off-by: Rajat Jindal --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 01634d2203..6b917b412b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,7 +35,7 @@ jobs: os: windows-latest rust: stable steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Install Rust (rustup) @@ -52,7 +52,7 @@ jobs: name: Test on WebAssembly runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Install Rust @@ -75,7 +75,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Rust run: rustup update stable && rustup default stable && rustup component add rustfmt # Note that this doesn't use `cargo fmt` because that doesn't format @@ -87,7 +87,7 @@ jobs: name: Fuzz runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - name: Install Rust @@ -99,7 +99,7 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo check --benches -p wasm-smith - run: cargo check --no-default-features - run: cargo check --no-default-features --features print @@ -121,5 +121,5 @@ jobs: doc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: cargo doc --all