From 095c8cdcb44c9c90d9442a8816fe9e9f599fa075 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 07:52:11 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | 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/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/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 `aws-actions/configure-aws-credentials` from 5 to 6 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v5...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) --- 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/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/prepare-release.yml | 6 +++--- .github/workflows/publish-release.yml | 8 ++++---- .github/workflows/publish-snapshot.yml | 8 ++++---- .github/workflows/publish-unstable.yml | 8 ++++---- .github/workflows/test.yml | 8 ++++---- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index cff52481..ef363150 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -37,7 +37,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 1b29b486..6068ab58 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -16,10 +16,10 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -39,7 +39,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -77,7 +77,7 @@ jobs: run: gh release upload ${{ github.ref_name }} ./dist/offline_${{ github.ref_name }}.zip - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index 604a0f6e..20f0831e 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -20,10 +20,10 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -43,7 +43,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -62,7 +62,7 @@ jobs: run: npm run build - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/publish-unstable.yml b/.github/workflows/publish-unstable.yml index 6c316558..c629b0a9 100644 --- a/.github/workflows/publish-unstable.yml +++ b/.github/workflows/publish-unstable.yml @@ -21,10 +21,10 @@ jobs: working-directory: ./core steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x @@ -44,7 +44,7 @@ jobs: run: pip install setuptools - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -67,7 +67,7 @@ jobs: run: sed -e 's#_PATH_#./#' -e 's#_DOC_VERSION_#latest#' -e 's#_TAG_VERSION_##' -e 's#_VERSION_#latest#' ./public/index.html > ./core/dist/index.html - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ secrets.AWS_REGION }} role-to-assume: ${{ secrets.AWS_OIDC_RUNNER_ROLE }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62925aa9..ab0401fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: MINICONDA_VERSION: 4.11.0 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 3 @@ -37,12 +37,12 @@ jobs: run: git log --graph -3 - name: Install node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: @@ -71,7 +71,7 @@ jobs: - name: Build run: make build # Integration tests run in the build step. - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: pyscript path: |