From cc723fa2e3ad93280953857756785265cefeb3d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 07:32:05 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-tests.yml | 10 +++++----- .github/workflows/clean-cache.yml | 2 +- .github/workflows/performance-report.yml | 4 ++-- .github/workflows/repl-artefacts.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-and-tests.yml b/.github/workflows/build-and-tests.yml index 6651e23cf..c82852efb 100644 --- a/.github/workflows/build-and-tests.yml +++ b/.github/workflows/build-and-tests.yml @@ -31,7 +31,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node uses: actions/setup-node@v4 with: @@ -204,7 +204,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node uses: actions/setup-node@v4 if: ${{ !matrix.settings.docker }} @@ -310,7 +310,7 @@ jobs: timeout-minutes: 120 steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cache Node Modules id: cache-node-modules uses: actions/cache@v4 @@ -399,7 +399,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node uses: actions/setup-node@v4 with: @@ -450,7 +450,7 @@ jobs: if: startsWith(github.ref_name, 'v4') steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Necessary to find the commits included in the release fetch-depth: 0 diff --git a/.github/workflows/clean-cache.yml b/.github/workflows/clean-cache.yml index 17e217152..ba9568fd9 100644 --- a/.github/workflows/clean-cache.yml +++ b/.github/workflows/clean-cache.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cleanup run: | gh extension install actions/gh-actions-cache diff --git a/.github/workflows/performance-report.yml b/.github/workflows/performance-report.yml index 9dd36aab8..024ebea54 100644 --- a/.github/workflows/performance-report.yml +++ b/.github/workflows/performance-report.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{matrix.settings.ref}} - name: Install Toolchain @@ -78,7 +78,7 @@ jobs: name: Report Performance steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: refs/pull/${{ github.event.number }}/merge - name: Install Toolchain diff --git a/.github/workflows/repl-artefacts.yml b/.github/workflows/repl-artefacts.yml index 20f0031b6..06aacc8c4 100644 --- a/.github/workflows/repl-artefacts.yml +++ b/.github/workflows/repl-artefacts.yml @@ -24,7 +24,7 @@ jobs: name: Upload steps: - name: Checkout Commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: refs/pull/${{ github.event.number }}/merge - name: Install Toolchain