From 648ad746d3e2174aa6b4f54e161e588043e0d673 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:24:17 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [googleapis/release-please-action](https://github.com/googleapis/release-please-action), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [cycjimmy/semantic-release-action](https://github.com/cycjimmy/semantic-release-action). 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 `googleapis/release-please-action` from 4 to 5 - [Release notes](https://github.com/googleapis/release-please-action/releases) - [Changelog](https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/release-please-action/compare/v4...v5) Updates `actions/create-github-app-token` from 1 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/create-github-app-token/compare/v1...v3) Updates `cycjimmy/semantic-release-action` from 4 to 6 - [Release notes](https://github.com/cycjimmy/semantic-release-action/releases) - [Changelog](https://github.com/cycjimmy/semantic-release-action/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/cycjimmy/semantic-release-action/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: cycjimmy/semantic-release-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: googleapis/release-please-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deploy.yml | 4 ++-- .github/workflows/release-please.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f01467..0847051 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,10 +52,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout caller repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout platform repo (for composite actions) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: refokus-agency/platform ref: ${{ inputs.platform-ref }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 05a8ea1..1685236 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -54,10 +54,10 @@ jobs: shell: bash - name: Checkout caller repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Checkout platform repo (for composite actions) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: refokus-agency/platform ref: ${{ inputs.platform-ref }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index bf70fd8..b130f31 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -16,13 +16,13 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: googleapis/release-please-action@v4 + - uses: googleapis/release-please-action@v5 id: release with: config-file: release-please-config.json manifest-file: .release-please-manifest.json - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 if: ${{ steps.release.outputs.release_created }} with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cebd4cc..fb91475 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,19 +68,19 @@ jobs: - name: Mint release token (GitHub App) id: app-token if: env.RELEASE_APP_ID != '' - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.RELEASE_APP_ID }} private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} - name: Checkout caller repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false - name: Checkout platform repo (for composite actions) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: refokus-agency/platform ref: ${{ inputs.platform-ref }} @@ -102,7 +102,7 @@ jobs: unsafe-install-scripts: ${{ inputs.unsafe-install-scripts }} - name: Semantic release - uses: cycjimmy/semantic-release-action@v4 + uses: cycjimmy/semantic-release-action@v6 with: ci: true semantic_version: ${{ inputs.semantic-release-version }}