From b0ee40d65596067bd508157ca6826ee270806453 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 17:49:59 +0000 Subject: [PATCH] Bump actions/checkout from 4.2.2 to 5.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [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/11bd71901bbe5b1630ceea73d27597364c9af683...08c6903cd8c0fde910a37f88322edcfb5dd907a8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/dependency-review.yml | 2 +- .github/workflows/matrix-example.yml | 4 +-- .github/workflows/multi-job-example.yml | 4 +-- .github/workflows/scorecards.yml | 2 +- .github/workflows/test.yml | 42 +++++++++++----------- .github/workflows/workflow-run-example.yml | 4 +-- 7 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4e7a2c9..a8bb910 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -48,7 +48,7 @@ jobs: egress-policy: audit - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 3629898..e08387e 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -22,6 +22,6 @@ jobs: egress-policy: audit - name: 'Checkout Repository' - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: 'Dependency Review' uses: actions/dependency-review-action@67d4f4bd7a9b17a0db54d2a7519187c65e339de8 # v4 diff --git a/.github/workflows/matrix-example.yml b/.github/workflows/matrix-example.yml index cb0f8aa..4080bd8 100644 --- a/.github/workflows/matrix-example.yml +++ b/.github/workflows/matrix-example.yml @@ -22,7 +22,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 - name: Get changed files @@ -49,7 +49,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Test run: | echo ${{ matrix.files }} diff --git a/.github/workflows/multi-job-example.yml b/.github/workflows/multi-job-example.yml index 73e170b..957fe8d 100644 --- a/.github/workflows/multi-job-example.yml +++ b/.github/workflows/multi-job-example.yml @@ -24,7 +24,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 - name: Get changed files @@ -60,7 +60,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 - name: Get changed files diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml index d39dd73..fb7ff05 100644 --- a/.github/workflows/scorecards.yml +++ b/.github/workflows/scorecards.yml @@ -41,7 +41,7 @@ jobs: egress-policy: audit - name: "Checkout code" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a7cf61..21a0d75 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false fetch-depth: 0 @@ -96,7 +96,7 @@ jobs: # contents: read # steps: # - name: Checkout into dir1 - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # submodules: true @@ -136,7 +136,7 @@ jobs: # path: dir2/dist # - name: Checkout into dir2 - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # submodules: true @@ -172,7 +172,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # fetch-depth: 0 @@ -232,7 +232,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # fetch-depth: 0 @@ -276,7 +276,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # fetch-depth: 0 @@ -315,7 +315,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # fetch-depth: ${{ matrix.fetch-depth }} @@ -349,7 +349,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha }} @@ -383,7 +383,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # fetch-depth: ${{ matrix.fetch-depth }} # persist-credentials: false @@ -413,7 +413,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # - name: Download build assets # uses: actions/download-artifact@v4 @@ -468,7 +468,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # - name: Download build assets # uses: actions/download-artifact@v4 @@ -523,7 +523,7 @@ jobs: # pull-requests: read # steps: # - name: Checkout into dir1 - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # submodules: true @@ -555,7 +555,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # submodules: true @@ -592,7 +592,7 @@ jobs: # contents: read # steps: # - name: Checkout into dir1 - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # repository: ${{ github.event.pull_request.head.repo.full_name }} # submodules: true @@ -631,7 +631,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha || github.sha }} # submodules: recursive @@ -697,7 +697,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha || github.sha }} # submodules: recursive @@ -792,7 +792,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha || github.sha }} # submodules: recursive @@ -978,7 +978,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: 2c65f7da2a8dc85c1b5225d02d7088a3825a29c3 # repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -1016,7 +1016,7 @@ jobs: # contents: read # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha }} # repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -1095,7 +1095,7 @@ jobs: # steps: # - name: Checkout branch - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # ref: ${{ github.event.pull_request.head.sha }} # repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -1148,7 +1148,7 @@ jobs: # steps: # - name: Checkout - # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + # uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 # with: # submodules: true # repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/workflow-run-example.yml b/.github/workflows/workflow-run-example.yml index 759391d..50febc1 100644 --- a/.github/workflows/workflow-run-example.yml +++ b/.github/workflows/workflow-run-example.yml @@ -18,7 +18,7 @@ jobs: egress-policy: audit - name: Checkout code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Get changed files id: changed-files @@ -39,7 +39,7 @@ jobs: egress-policy: audit - name: Checkout code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Get changed files id: changed-files