From 34563a88cf7cb26c50d9fe43de1574e605e8e232 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 04:46:13 +0000 Subject: [PATCH] chore(deps): bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action). Updates `actions/checkout` from 5 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/v5...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `hadolint/hadolint-action` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/hadolint/hadolint-action/releases) - [Commits](https://github.com/hadolint/hadolint-action/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: hadolint/hadolint-action dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 24 ++++++++++++------------ .github/workflows/publish-features.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test-features.yml | 4 ++-- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 63b9387..f8891ae 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,8 +23,8 @@ jobs: name: ShellCheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: lts/* - name: Install pnpm @@ -45,8 +45,8 @@ jobs: name: Feature metadata runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: lts/* - name: Install pnpm @@ -63,8 +63,8 @@ jobs: name: JSON keys runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: lts/* - name: Install pnpm @@ -79,8 +79,8 @@ jobs: name: Prettier runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: lts/* - name: Install pnpm @@ -102,8 +102,8 @@ jobs: name: Actionlint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: lts/* - name: Install pnpm @@ -124,9 +124,9 @@ jobs: name: Hadolint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Hadolint - uses: hadolint/hadolint-action@v3.3.0 + uses: hadolint/hadolint-action@v3.4.0 with: dockerfile: .devcontainer/Dockerfile diff --git a/.github/workflows/publish-features.yml b/.github/workflows/publish-features.yml index 5fb0c05..1667648 100644 --- a/.github/workflows/publish-features.yml +++ b/.github/workflows/publish-features.yml @@ -34,7 +34,7 @@ jobs: contents: write # generate-docs commits the per-feature README.md packages: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 146d00d..a2c6734 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,13 +37,13 @@ jobs: packages: write # pushes the Feature artifacts to ghcr.io id-token: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: # semantic-release reads the full history to work out the next version. fetch-depth: 0 persist-credentials: true - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: lts/* diff --git a/.github/workflows/test-features.yml b/.github/workflows/test-features.yml index 9753816..aeb676d 100644 --- a/.github/workflows/test-features.yml +++ b/.github/workflows/test-features.yml @@ -26,13 +26,13 @@ jobs: feature: - devbase steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 # Without this the job runs on whatever Node the runner image happens to # ship — Node 22 at the time of writing, below the >=24.15.0 this project # declares in package.json engines. lts/* matches lint.yml and release.yml, # so all three workflows move together. - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: lts/*