Skip to content

Commit

Permalink
upgrade GHA actions to newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vraravam committed Feb 10, 2024
1 parent 5025287 commit 73845df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 73845df

Please sign in to comment.