From 7dbeca8e6574d5cd2fa91e830f4fcf3f8a1e0539 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 11:12:26 -0700 Subject: [PATCH] Bump the all group across 1 directory with 4 updates (#2660) Bumps the all group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). 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/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 `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../copilot/.github/workflows/copilot-setup-steps.yml | 2 +- .../.github/workflows/ensure-node-modules-cache.yml | 4 ++-- extensions/copilot/.github/workflows/npm-package.yml | 4 ++-- extensions/copilot/.github/workflows/pr.yml | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/extensions/copilot/.github/workflows/copilot-setup-steps.yml b/extensions/copilot/.github/workflows/copilot-setup-steps.yml index f8a21280d26..1c99b58e538 100644 --- a/extensions/copilot/.github/workflows/copilot-setup-steps.yml +++ b/extensions/copilot/.github/workflows/copilot-setup-steps.yml @@ -41,7 +41,7 @@ jobs: run: pip install setuptools - name: Restore build cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: build-cache with: key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }} diff --git a/extensions/copilot/.github/workflows/ensure-node-modules-cache.yml b/extensions/copilot/.github/workflows/ensure-node-modules-cache.yml index bcf2d26e4b0..a82dab5344b 100644 --- a/extensions/copilot/.github/workflows/ensure-node-modules-cache.yml +++ b/extensions/copilot/.github/workflows/ensure-node-modules-cache.yml @@ -24,7 +24,7 @@ jobs: node-version-file: .nvmrc - name: Restore build cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: build-cache with: key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }} @@ -64,7 +64,7 @@ jobs: architecture: 'x64' - name: Restore build cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: build-cache with: key: windows-build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }} diff --git a/extensions/copilot/.github/workflows/npm-package.yml b/extensions/copilot/.github/workflows/npm-package.yml index 5508ea20295..dc2c8346fde 100644 --- a/extensions/copilot/.github/workflows/npm-package.yml +++ b/extensions/copilot/.github/workflows/npm-package.yml @@ -23,10 +23,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x cache: npm diff --git a/extensions/copilot/.github/workflows/pr.yml b/extensions/copilot/.github/workflows/pr.yml index d9cd7c32cdf..32ba3f21dfe 100644 --- a/extensions/copilot/.github/workflows/pr.yml +++ b/extensions/copilot/.github/workflows/pr.yml @@ -28,7 +28,7 @@ jobs: node-version-file: .nvmrc - name: Restore build cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: build-cache with: key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }} @@ -98,7 +98,7 @@ jobs: run: pip install setuptools - name: Restore build cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: build-cache with: key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }} @@ -157,7 +157,7 @@ jobs: - name: Upload simulation output if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: simulation-output-linux-${{ github.run_attempt }} path: .simulation-archive/simulation.tgz @@ -191,7 +191,7 @@ jobs: run: pip install setuptools - name: Restore build cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: build-cache with: key: windows-build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}