From a6316504d9a367237d42a87d221181d4b5f92152 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:13:41 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 3 updates Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-release.yml | 12 ++++++------ .github/workflows/update-dependencies.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 2c42a8a..55eaea8 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -15,7 +15,7 @@ jobs: if: ${{ github.event.commits[0].author.name != 'dependabot[bot]' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.ASSETS_COMMIT_TOKEN }} ref: ${{ github.head_ref || github.ref_name }} @@ -53,7 +53,7 @@ jobs: run: | zip release.zip -r . - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: release path: release.zip @@ -72,7 +72,7 @@ jobs: with: node-version: 18 - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: release @@ -124,7 +124,7 @@ jobs: if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed run: zip build.zip -r . - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed with: name: build @@ -144,7 +144,7 @@ jobs: version: ${{ steps.asset_version.outputs.version }} steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: build @@ -179,7 +179,7 @@ jobs: runs-on: [ubuntu-latest] steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: build diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 6514027..b836f6b 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -13,7 +13,7 @@ jobs: packages_changed: ${{ steps.changes.outputs.packages_changed }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.ASSETS_COMMIT_TOKEN }} ref: ${{ github.head_ref || github.ref_name }}