From 2237dcbca1432df44e57ea06d227ae99a24f9b52 Mon Sep 17 00:00:00 2001 From: msivasubramaniaan Date: Tue, 28 May 2024 17:11:35 +0530 Subject: [PATCH] upgrade github actions Signed-off-by: msivasubramaniaan --- .github/workflows/CI.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a5418432..5bbff190 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -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 @@ -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