From 8e095891d93b1b2ac50f3011773e06cd825d260f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 12:45:58 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | | [phips28/gh-action-bump-version](https://github.com/phips28/gh-action-bump-version) | `10.0.1` | `11.1.1` | 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 `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v7) Updates `phips28/gh-action-bump-version` from 10.0.1 to 11.1.1 - [Release notes](https://github.com/phips28/gh-action-bump-version/releases) - [Commits](https://github.com/phips28/gh-action-bump-version/compare/95099cd5edcdae43499bc94202b9d907e739e9c8...71473b25295fe3907df2ff87cce295a0dce1b20b) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: phips28/gh-action-bump-version dependency-version: 11.1.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d2416a6..71a4addb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,8 +43,8 @@ jobs: env: BUILD_GROUP: ${{ matrix.build-group }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: '20' architecture: ${{ matrix.arch }} @@ -55,7 +55,7 @@ jobs: - name: Prebuildify run: npm run prebuild-$BUILD_GROUP shell: bash - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: prebuilds-${{ matrix.build-group }} path: prebuilds/ @@ -66,13 +66,13 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 + - uses: actions/checkout@v6 + - uses: actions/download-artifact@v7 with: pattern: prebuilds-* path: prebuilds merge-multiple: true - - uses: phips28/gh-action-bump-version@95099cd5edcdae43499bc94202b9d907e739e9c8 + - uses: phips28/gh-action-bump-version@71473b25295fe3907df2ff87cce295a0dce1b20b with: tag-prefix: 'v' version-type: 'patch'