Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Cache npm cache directory (~/.npm)
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: npm-${{ runner.os }}-node${{ env.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -43,7 +43,7 @@ jobs:
echo "VSCODE_VERSION=$ver" >> "$GITHUB_ENV"

- name: Cache VS Code test binaries
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .vscode-test
key: vscode-test-${{ runner.os }}-${{ steps.vscode.outputs.version }}
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Upload VSIX artifact
if: github.event_name != 'pull_request' && always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: vsix
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "version=$VERSION" >> "$GITHUB_OUTPUT"

- name: Upload VSIX artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ steps.vars.outputs.file }}
path: ${{ steps.vars.outputs.file }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
echo "file=$FILE" >> "$GITHUB_OUTPUT"

- name: Upload VSIX artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ steps.vars.outputs.name }}-${{ steps.verify.outputs.version }}
path: ${{ steps.vars.outputs.file }}
Expand Down