diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 584dd99..7b62ccf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,10 +16,10 @@ jobs: steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache npm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/update-vscode.yml b/.github/workflows/update-vscode.yml index 3b90baa..2c9c17a 100644 --- a/.github/workflows/update-vscode.yml +++ b/.github/workflows/update-vscode.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update VS Code version used by the tests run: | @@ -33,7 +33,7 @@ jobs: echo "LATEST_VSCODE_VERSION=$LATEST_VSCODE_VERSION" >> $GITHUB_ENV - name: Open a pull request id: pr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 if: env.TEST_VSCODE_VERSION != env.LATEST_VSCODE_VERSION with: # Use viper-admin's token to workaround a restriction of GitHub. @@ -47,7 +47,7 @@ jobs: * Update VS Code version used in tests to `${{ env.LATEST_VSCODE_VERSION }}`. - name: Enable auto-merge of PR - uses: peter-evans/create-or-update-comment@v2 + uses: peter-evans/create-or-update-comment@v4 if: env.TEST_VSCODE_VERSION != env.LATEST_VSCODE_VERSION with: token: ${{ secrets.VIPER_ADMIN_TOKEN }}