From 967d167e11551dd3d622c71a24275685cb557390 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 06:10:20 +0000 Subject: [PATCH] build(deps): bump the all-actions-dependencies group across 1 directory with 2 updates Bumps the all-actions-dependencies group with 2 updates in the / directory: [actions/github-script](https://github.com/actions/github-script) and [actions/checkout](https://github.com/actions/checkout). Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) Updates `actions/checkout` from 6 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/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/bump.yaml | 2 +- .github/workflows/test.yaml | 18 +++++++++--------- action.yaml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/bump.yaml b/.github/workflows/bump.yaml index d090735..41e2c05 100644 --- a/.github/workflows/bump.yaml +++ b/.github/workflows/bump.yaml @@ -10,7 +10,7 @@ jobs: contents: write actions: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9f94587..deee92e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,7 +9,7 @@ jobs: test-installs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./ - name: Test it was installed run: | @@ -17,12 +17,12 @@ jobs: test-version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./ with: version: 4.0.0 - name: Test version matches - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const assert = require('node:assert/strict'); @@ -41,12 +41,12 @@ jobs: cz_name: cz_kpn runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./ with: extra-requirements: ${{ matrix.extra_requirements.pip_name }} - name: Test extra requirements were installed - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: EXTRA_REQUIREMENTS: ${{ matrix.extra_requirements.cz_name }} with: @@ -60,7 +60,7 @@ jobs: test-get-changelog: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: ./ @@ -70,7 +70,7 @@ jobs: run: | cz changelog --dry-run "${GIVEN_VERSION}" > .changelog.md - name: Verify changelog content - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const assert = require('node:assert/strict'); @@ -90,7 +90,7 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: ./ @@ -109,7 +109,7 @@ jobs: test-python-version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: ./ diff --git a/action.yaml b/action.yaml index 9a57b9f..c49abeb 100644 --- a/action.yaml +++ b/action.yaml @@ -41,7 +41,7 @@ runs: git config --global user.name "${{ inputs.git-user-name }}" git config --global user.email "${{ inputs.git-user-email }}" - id: set-vars - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: COMMITIZEN_VERSION: ${{ inputs.version }} CACHE: ${{ inputs.cache }}