From 11f133d2f2c9d12d9960381ce249b91cd24b3337 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 09:22:45 +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/ci.yml | 6 +++--- .github/workflows/ciff-example-command.yml | 2 +- .github/workflows/update-major-version.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5720de96..5b40ba59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 20.x @@ -47,7 +47,7 @@ jobs: matrix: target: [built, committed] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - if: matrix.target == 'built' || github.event_name == 'pull_request' uses: actions/download-artifact@v5 with: @@ -92,7 +92,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: rm -rf dist - uses: actions/download-artifact@v5 with: diff --git a/.github/workflows/ciff-example-command.yml b/.github/workflows/ciff-example-command.yml index 5ac31082..f73871f6 100644 --- a/.github/workflows/ciff-example-command.yml +++ b/.github/workflows/ciff-example-command.yml @@ -18,7 +18,7 @@ jobs: echo "branch=$branch" >> $GITHUB_OUTPUT # Checkout the branch to test - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: ${{ steps.vars.outputs.repository }} ref: ${{ steps.vars.outputs.branch }} diff --git a/.github/workflows/update-major-version.yml b/.github/workflows/update-major-version.yml index 82eb5332..b4c24986 100644 --- a/.github/workflows/update-major-version.yml +++ b/.github/workflows/update-major-version.yml @@ -17,7 +17,7 @@ jobs: tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.ACTIONS_BOT_TOKEN }} fetch-depth: 0