From 73845dfa016c94de009be5057d793cdaabbb57bc Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 10 Feb 2024 12:53:59 +0530 Subject: upgrade GHA actions to newer versions --- .github/workflows/builds.yml | 8 ++++---- .github/workflows/check-pr.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index fb9b6cd..02557ec 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -25,16 +25,16 @@ jobs: - name: Print latest commit run: echo ${{ github.sha }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 - name: Use Node.js specified in the '.nvmrc' file - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' cache: 'pnpm' - name: Install node dependencies recursively - uses: nick-fields/retry@v2.8.3 + uses: nick-fields/retry@v3 with: command: pnpm i timeout_minutes: 15 diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index a9a4d97..b94da53 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch main branch run: git fetch origin main --depth 1 - uses: tj-actions/changed-files@v37 -- cgit v1.2.3-54-g00ecf