From d90f45fa319ab66c13e5020fd5986256019b245f Mon Sep 17 00:00:00 2001 From: bytedream Date: Wed, 3 Jan 2024 01:08:40 +0100 Subject: [PATCH] Update checkout action version --- .github/workflows/ci.yml | 6 +++--- .github/workflows/publish.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54da377..aa70330 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: toolchain: aarch64-unknown-linux-musl steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cargo cache uses: actions/cache@v3 @@ -68,7 +68,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cargo cache uses: actions/cache@v3 @@ -100,7 +100,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cargo cache uses: actions/cache@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 43ea795..4a477b3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get version run: echo "RELEASE_VERSION=$(echo ${{ github.ref_name }} | cut -c 2-)" >> $GITHUB_ENV