From fb08a27d9573bab5ba40062c40161e14e08bb62e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 06:21:50 +0000 Subject: [PATCH] chore(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/github-script](https://github.com/actions/github-script). 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 `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) 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) --- 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/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' 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/codeql.yml | 2 +- .github/workflows/pr-label.yml | 2 +- .github/workflows/release.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d6e939..02f5942 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Restore npm cache id: cache-npm - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.npm key: npm-${{ runner.os }}-node${{ matrix.node }}-${{ hashFiles('package-lock.json') }} @@ -69,7 +69,7 @@ jobs: - name: Save npm cache (only on green run) if: success() && steps.cache-npm.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.npm key: ${{ steps.cache-npm.outputs.cache-primary-key }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index bbaf7a7..8cf6fb8 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,7 +22,7 @@ jobs: matrix: language: [javascript-typescript] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} diff --git a/.github/workflows/pr-label.yml b/.github/workflows/pr-label.yml index ffe5d77..8a812c3 100644 --- a/.github/workflows/pr-label.yml +++ b/.github/workflows/pr-label.yml @@ -21,7 +21,7 @@ jobs: label: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: script: | const title = context.payload.pull_request.title || ''; diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b690483..d9986bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,7 @@ jobs: - name: Restore npm cache id: cache-npm - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.npm key: npm-${{ runner.os }}-node24-${{ hashFiles('package-lock.json') }} @@ -104,7 +104,7 @@ jobs: - name: Save npm cache (only on green run) if: success() && steps.cache-npm.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.npm key: ${{ steps.cache-npm.outputs.cache-primary-key }}