Skip to content

Commit

Permalink
upgrade github actions
Browse files Browse the repository at this point in the history
Signed-off-by: msivasubramaniaan <[email protected]>
  • Loading branch information
msivasubramaniaan committed May 28, 2024
1 parent e5a67a1 commit 2237dcb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Set up Node
- name: Use Node 14
uses: actions/setup-node@v1
- name: Use Node 18
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 18

# Run install dependencies
- name: Install dependencies
Expand Down Expand Up @@ -62,15 +62,15 @@ jobs:
#Upload vsix
- name: Upload linux-built vsix
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: vscode-yaml
path: vscode-yaml*.vsix

# Archive test results
- name: Archiving test artifacts
uses: actions/upload-artifact@v2
with:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-artifacts
path: |
test-resources/screenshots/*.png
Expand Down

0 comments on commit 2237dcb

Please sign in to comment.