From cf240fdfa6566e61bb070c12ef6ec6ecb0fb0d52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 05:07:37 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2` | `3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2` | `3` | Updates `actions/checkout` from 5 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/v5...v6) Updates `dependabot/fetch-metadata` from 2 to 3 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/v2...v3) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `slackapi/slack-github-action` from 2 to 3 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/slackapi/slack-github-action/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dependabot/fetch-metadata dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: slackapi/slack-github-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/publish.yml | 18 +++++++++--------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c38d055..f70b7fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: name: 🔷 Type Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup - run: pnpm typecheck @@ -43,7 +43,7 @@ jobs: matrix: node: ['20', '22'] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup with: node-version: ${{ matrix.node }} @@ -60,7 +60,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup - run: pnpm test @@ -68,7 +68,7 @@ jobs: name: 🎨 Format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup - run: pnpm format:check @@ -76,6 +76,6 @@ jobs: name: 🔍 Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup - run: pnpm lint diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index bbd6dd6..d09fadd 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -14,7 +14,7 @@ jobs: steps: - name: 📋 Fetch Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v2 + uses: dependabot/fetch-metadata@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b9d2f4..a5a8fcd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,7 +55,7 @@ jobs: tag: ${{ steps.tag.outputs.tag }} is_prerelease: ${{ steps.tag.outputs.is_prerelease }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 📋 Read package version id: pkg @@ -93,7 +93,7 @@ jobs: runs-on: ubuntu-latest needs: validate steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup - name: 🔷 Type check @@ -127,19 +127,19 @@ jobs: name: npm url: https://www.npmjs.com/package/@stackra/mono-cli steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/setup with: node-version: '22' - name: 📥 Download dist artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: dist-publish-${{ github.sha }} path: dist/ - name: 🔧 Configure npm registry - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: '22' registry-url: 'https://registry.npmjs.org' @@ -176,7 +176,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -216,7 +216,7 @@ jobs: github.event.inputs.dry_run != 'true' && startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -306,7 +306,7 @@ jobs: steps.check.outputs.configured == 'true' && needs.publish.result == 'success' && needs.release.result == 'success' - uses: slackapi/slack-github-action@v2 + uses: slackapi/slack-github-action@v3 with: webhook: ${{ secrets.STACKRA_SLACK_WEBHOOK_URL }} webhook-type: incoming-webhook @@ -360,7 +360,7 @@ jobs: if: | steps.check.outputs.configured == 'true' && (needs.publish.result == 'failure' || needs.release.result == 'failure') - uses: slackapi/slack-github-action@v2 + uses: slackapi/slack-github-action@v3 with: webhook: ${{ secrets.STACKRA_SLACK_WEBHOOK_URL }} webhook-type: incoming-webhook