Skip to content

Commit ec3b267

Browse files
chore(actions): bump the all group with 2 updates
Bumps the all group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). 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/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 d556ee3 commit ec3b267

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version: ${{ env.NODE_VERSION }}
2525

2626
- name: Cache npm cache directory (~/.npm)
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: ~/.npm
3030
key: npm-${{ runner.os }}-node${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}
@@ -43,7 +43,7 @@ jobs:
4343
echo "VSCODE_VERSION=$ver" >> "$GITHUB_ENV"
4444
4545
- name: Cache VS Code test binaries
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: .vscode-test
4949
key: vscode-test-${{ runner.os }}-${{ steps.vscode.outputs.version }}
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Upload VSIX artifact
6868
if: github.event_name != 'pull_request' && always()
69-
uses: actions/upload-artifact@v5
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: vsix
7272
path: |

.github/workflows/release-dryrun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
4040
4141
- name: Upload VSIX artifact
42-
uses: actions/upload-artifact@v5
42+
uses: actions/upload-artifact@v6
4343
with:
4444
name: ${{ steps.vars.outputs.file }}
4545
path: ${{ steps.vars.outputs.file }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
echo "file=$FILE" >> "$GITHUB_OUTPUT"
8080
8181
- name: Upload VSIX artifact
82-
uses: actions/upload-artifact@v5
82+
uses: actions/upload-artifact@v6
8383
with:
8484
name: ${{ steps.vars.outputs.name }}-${{ steps.verify.outputs.version }}
8585
path: ${{ steps.vars.outputs.file }}

0 commit comments

Comments
 (0)