Skip to content

Commit

Permalink
CI: update deprecated actions in workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed May 18, 2024
1 parent 091b0dc commit a9a6dbd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: v20.x
- name: Install dependencies
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Package extension
run: npm exec vsce package
- name: Upload package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package
path: '*.vsix'
Expand All @@ -37,13 +37,13 @@ jobs:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
steps:
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: v20.x
- name: Install VSCE
run: npm install -g @vscode/vsce
- name: Download package artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: package
- name: Publish package
Expand Down

0 comments on commit a9a6dbd

Please sign in to comment.