From 47415c4e0c2fa2381afffe600e8a361946d7998d Mon Sep 17 00:00:00 2001 From: James Niken Date: Wed, 23 Apr 2025 12:29:16 +0300 Subject: [PATCH] ci: bump actions/checkout to v4 --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc73510a4..ca90691fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 60 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - name: Install Rust @@ -32,7 +32,7 @@ jobs: # build-playground: # runs-on: ubuntu-latest # steps: -# - uses: actions/checkout@v3 +# - uses: actions/checkout@v4 # with: # submodules: recursive # - name: Downgrade CMAKE diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 149015e4b..23fdae263 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Get current date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d')" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - uses: actions-rs/toolchain@v1