From 2a64b017f2e522b8e00af51cb42d78bfeeb1fcf9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 08:49:45 +0000 Subject: [PATCH] chore(deps): bump the actions-all group across 1 directory with 5 updates Bumps the actions-all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | | [pnpm/action-setup](https://github.com/pnpm/action-setup) | `4` | `6` | | [dorny/paths-filter](https://github.com/dorny/paths-filter) | `3` | `4` | Updates `actions/checkout` from 4 to 6 - [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...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) Updates `pnpm/action-setup` from 4 to 6 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v6) Updates `dorny/paths-filter` from 3 to 4 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: dorny/paths-filter dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: pnpm/action-setup dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/check-pinned-versions.yml | 2 +- .github/workflows/e2e-coverage-bot.yml | 4 ++-- .github/workflows/pr-gate.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- .github/workflows/spa-pr-validation.yml | 12 ++++++------ .github/workflows/test-full-pipeline.yml | 2 +- .github/workflows/trigger-docker-build.yml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/check-pinned-versions.yml b/.github/workflows/check-pinned-versions.yml index 82fbda0..88b3734 100644 --- a/.github/workflows/check-pinned-versions.yml +++ b/.github/workflows/check-pinned-versions.yml @@ -13,7 +13,7 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check for unpinned dependency versions run: | diff --git a/.github/workflows/e2e-coverage-bot.yml b/.github/workflows/e2e-coverage-bot.yml index 2f1e920..01f650f 100644 --- a/.github/workflows/e2e-coverage-bot.yml +++ b/.github/workflows/e2e-coverage-bot.yml @@ -43,7 +43,7 @@ jobs: steps: # Checkout the PR branch using the bot token so git push works # and so `gh` CLI inside Claude is authenticated as the bot account - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.head_ref }} @@ -52,7 +52,7 @@ jobs: - name: Fetch base branch run: git fetch origin ${{ github.base_ref }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: '20' diff --git a/.github/workflows/pr-gate.yml b/.github/workflows/pr-gate.yml index f2363ec..6ebbda3 100644 --- a/.github/workflows/pr-gate.yml +++ b/.github/workflows/pr-gate.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set validation status - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const labels = context.payload.pull_request.labels.map(l => l.name); @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Update validation status from E2E result - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const run = context.payload.workflow_run; diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2ab361..c7d5420 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,18 +18,18 @@ jobs: if: "!startsWith(github.event.head_commit.message, 'chore(skills): release')" runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.GIT_TOKEN }} - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '25.3.0' - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/.github/workflows/spa-pr-validation.yml b/.github/workflows/spa-pr-validation.yml index d0280a1..5105041 100644 --- a/.github/workflows/spa-pr-validation.yml +++ b/.github/workflows/spa-pr-validation.yml @@ -30,13 +30,13 @@ jobs: nodes-json: ${{ steps.config.outputs.nodes-json }} venv-name: ${{ steps.config.outputs.venv-name }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Detect changes id: changes - uses: dorny/paths-filter@v3 + uses: dorny/paths-filter@v4 with: filters: | app: @@ -163,12 +163,12 @@ jobs: if: always() && needs.acquire-domain.result == 'success' runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '20' @@ -189,7 +189,7 @@ jobs: auth-uri: ${{ steps.read-auth.outputs.image-uri }} steps: - name: Checkout ops - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: iblai/iblai-web-ops token: ${{ secrets.GIT_TOKEN || github.token }} @@ -908,7 +908,7 @@ jobs: - name: Update PR gate status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const passed = '${{ steps.check-results.outcome }}' === 'success'; diff --git a/.github/workflows/test-full-pipeline.yml b/.github/workflows/test-full-pipeline.yml index 225b51e..f6ac2c6 100644 --- a/.github/workflows/test-full-pipeline.yml +++ b/.github/workflows/test-full-pipeline.yml @@ -125,7 +125,7 @@ jobs: done - name: Checkout infra CLI - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: iblai/iblai-infra-cli token: ${{ secrets.GIT_TOKEN }} diff --git a/.github/workflows/trigger-docker-build.yml b/.github/workflows/trigger-docker-build.yml index cbe9e36..ee7fec6 100644 --- a/.github/workflows/trigger-docker-build.yml +++ b/.github/workflows/trigger-docker-build.yml @@ -18,7 +18,7 @@ jobs: outputs: version: ${{ steps.version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Extract version from package.json id: version