From ca1f6467f5d7fcbbee50c6736290b4c1bf30dc80 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Fri, 17 Feb 2023 22:05:28 +0100 Subject: [PATCH] Update actions/checkout in GitHub Actions workflows to v4 --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2bc62d9c..fa781735 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: lints: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -31,7 +31,7 @@ jobs: os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions-rs/cargo@v1 - uses: actions-rs/toolchain@v1 with: @@ -41,7 +41,7 @@ jobs: wasm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -52,7 +52,7 @@ jobs: # needs: test # steps: # - name: Checkout - # uses: actions/checkout@v2.3.1 + # uses: actions/checkout@v4 # - name: Build the book # run: cd guide && mdbook build # - name: Deploy @@ -61,4 +61,4 @@ jobs: # with: # branch: master # folder: guide/book - # token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + # token: ${{ secrets.GITHUB_TOKEN }}