Skip to content

Commit a1adebe

Browse files
Bump the all group across 1 directory with 4 updates
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](actions/checkout@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@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](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@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] <support@github.com>
1 parent 0f86ced commit a1adebe

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: pip install setuptools
4242

4343
- name: Restore build cache
44-
uses: actions/cache/restore@v4
44+
uses: actions/cache/restore@v5
4545
id: build-cache
4646
with:
4747
key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}

.github/workflows/ensure-node-modules-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version-file: .nvmrc
2525

2626
- name: Restore build cache
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
id: build-cache
2929
with:
3030
key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}
@@ -64,7 +64,7 @@ jobs:
6464
architecture: 'x64'
6565

6666
- name: Restore build cache
67-
uses: actions/cache@v4
67+
uses: actions/cache@v5
6868
id: build-cache
6969
with:
7070
key: windows-build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}

.github/workflows/npm-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: 22.x
3232
cache: npm

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
node-version-file: .nvmrc
2929

3030
- name: Restore build cache
31-
uses: actions/cache/restore@v4
31+
uses: actions/cache/restore@v5
3232
id: build-cache
3333
with:
3434
key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}
@@ -98,7 +98,7 @@ jobs:
9898
run: pip install setuptools
9999

100100
- name: Restore build cache
101-
uses: actions/cache/restore@v4
101+
uses: actions/cache/restore@v5
102102
id: build-cache
103103
with:
104104
key: build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}
@@ -154,7 +154,7 @@ jobs:
154154
155155
- name: Upload simulation output
156156
if: always()
157-
uses: actions/upload-artifact@v5
157+
uses: actions/upload-artifact@v6
158158
with:
159159
name: simulation-output-linux-${{ github.run_attempt }}
160160
path: .simulation-archive/simulation.tgz
@@ -188,7 +188,7 @@ jobs:
188188
run: pip install setuptools
189189

190190
- name: Restore build cache
191-
uses: actions/cache/restore@v4
191+
uses: actions/cache/restore@v5
192192
id: build-cache
193193
with:
194194
key: windows-build_cache-${{ hashFiles('build/.cachesalt', 'package-lock.json') }}

0 commit comments

Comments
 (0)