From f81c16ff00185593e478ae4ed1ecfc0ae8847587 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 00:26:31 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [tj-actions/changed-files](https://github.com/tj-actions/changed-files), [actions/setup-node](https://github.com/actions/setup-node) and [actions/github-script](https://github.com/actions/github-script). Updates `tj-actions/changed-files` from 46.0.5 to 47.0.0 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/ed68ef82c095e0d48ec87eccea555d944a631a4c...24d32ffd492484c1d75e0c0b894501ddb9d30d62) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) Updates `actions/github-script` from 7.0.1 to 8.0.0 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-version: 47.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/checks.yml | 2 +- .github/workflows/npm-publish.yml | 2 +- .github/workflows/windows-test.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 7644dd321..f03c22872 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v5 - id: changed-files name: Get changed files - uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5 + uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0 - id: set-modified-modules name: Set all modified modules env: diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index ed467a3c2..8caa9c867 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -12,7 +12,7 @@ jobs: with: ref: main - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 registry-url: "https://registry.npmjs.org" diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml index ff4f0f861..658a50fac 100644 --- a/.github/workflows/windows-test.yml +++ b/.github/workflows/windows-test.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false steps: - name: Create pending status - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -34,7 +34,7 @@ jobs: ref: ${{ github.event.client_payload.pull_request.head.ref }} - name: Install NodeJS - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x @@ -45,7 +45,7 @@ jobs: run: npm run test:ci - name: Create success status - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 if: success() with: github-token: ${{ secrets.GITHUB_TOKEN }} @@ -62,7 +62,7 @@ jobs: } - name: Create failure status - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 if: failure() with: github-token: ${{ secrets.GITHUB_TOKEN }}