From da9e375bd4c3e6637b6837c7317f5e96d32c0e5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 08:44:11 +0000 Subject: [PATCH 1/2] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) and [actions/checkout](https://github.com/actions/checkout). Updates `styfle/cancel-workflow-action` from 0.9.1 to 0.13.0 - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.9.1...0.13.0) 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) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3adf9ba..ca61b38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,12 +20,12 @@ jobs: steps: - name: 🛑 Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: access_token: ${{ secrets.GITHUB_TOKEN }} - name: ⬇️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c4d9a1a..7437e59 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false From 19d9ccaf723cc905c5d70aff3a5bbe9639460a2e Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Fri, 6 Mar 2026 17:46:06 +0900 Subject: [PATCH 2/2] Update CI workflow to use actions/checkout@v5 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca61b38..4922a63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: access_token: ${{ secrets.GITHUB_TOKEN }} - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v5 with: persist-credentials: false @@ -36,7 +36,7 @@ jobs: cache: npm - name: 📥 Download deps - run: npm ci + run: npm i - name: Test run: npm test