From 3cd5ecc11cb6cda805c7af01e92e704a0f355e3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 15:41:07 +0000 Subject: [PATCH] ci(deps): 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 | 8 ++++---- .github/workflows/release.yml | 2 +- .github/workflows/security.yml | 2 +- .github/workflows/update.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 047a17c..38f181c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: 'false' - name: Bootstrap repository @@ -44,14 +44,14 @@ jobs: contents: write steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Necessary for hooks to succeed during tests for commits/schedule if: github.event_name != 'pull_request' with: fetch-depth: 0 persist-credentials: 'false' - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Necessary for hooks to succeed during tests for PRs if: github.event_name == 'pull_request' with: @@ -121,7 +121,7 @@ jobs: exit 1 fi - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Scan workflow logs for warnings and errors run: scripts/scan_workflow_logs.sh ${{ github.run_id }} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a068e33..6638e5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: tag: ${{ steps.release.outputs.tag }} steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index d83cfc4..9b31d5d 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: 'false' - name: Bootstrap repository diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index decad3c..676b419 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -22,7 +22,7 @@ jobs: pull-requests: write steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: persist-credentials: 'false' - name: Bootstrap repository