From e2b6c77e01f8d22bbd63e6fb4ef0fcbe6271f862 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 12 May 2024 18:03:49 +0700 Subject: [PATCH] ci: Update to `actions/checkout` `v4` from `v3` This updates to a newer version of Node within the GitHub Action and eliminates a warning about using the old version within the Actions UI. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ef02b461..0f2f1c3c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: setup toolchain # `--no-self-update` is needed due to a permission issue on the GHA env. @@ -106,7 +106,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: setup toolchain # `--no-self-update` is needed due to a permission issue on the GHA env. @@ -129,7 +129,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install cargo-audit run: |