From d7d2e657c4971dd8dcff4fecf2e7147073b281f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:41:25 +0000 Subject: [PATCH] deps(ci): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/pages.yml | 2 +- .github/workflows/promote.yml | 2 +- .github/workflows/release.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 222c68e..80b0ad6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: # a job that sits for six. timeout-minutes: 25 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} fetch-depth: 0 # buf breaking needs history to compare against @@ -229,7 +229,7 @@ jobs: # nowhere near this. timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - uses: ./.github/actions/gwc @@ -321,7 +321,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - uses: ./.github/actions/gwc @@ -371,7 +371,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - uses: ./.github/actions/gwc @@ -489,7 +489,7 @@ jobs: # screen without letting them hold the release. continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - uses: ./.github/actions/gwc diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 358b67d..b057276 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -91,7 +91,7 @@ jobs: # hung step is noticed the same hour. The whole job is ~5 minutes warm. timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # D0 — see .github/actions/gwc. `path: ../GoWebComponents` is not a thing # actions/checkout will do, and this is the four lines that make it work. diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 490851f..0e10198 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -96,7 +96,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # The ancestry check below is meaningless against a shallow clone. fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5490969..67d98e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: name: Verify before shipping runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # go.mod replaces GoWebComponents/v5 by relative path; this action materialises the # sibling checkout at the pinned ref, exactly as ci.yml does. @@ -64,7 +64,7 @@ jobs: # action cannot be used here — it moves its checkout to ../GoWebComponents, OUTSIDE # the workspace, where a docker build context cannot reach. Its pinned ref is still # the single source of truth: read from the action.yml default, never copied. - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: path: ArticleFlux @@ -78,7 +78,7 @@ jobs: echo "GoWebComponents pin: $ref" - name: Check out GoWebComponents - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: monstercameron/GoWebComponents ref: ${{ steps.gwc.outputs.ref }}