Skip to content

Commit

Permalink
updated version in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
luth1um committed May 31, 2024
1 parent fdb1ab0 commit 1fbdadc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js ⚙️
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22

- name: Setup pnpm ⚙️
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 7
version: 9

- name: Install 🕝
run: pnpm install --frozen-lockfile
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js ⚙️
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22

- name: Setup pnpm ⚙️
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 7
version: 9

- name: Install 🕝
run: pnpm install --frozen-lockfile
Expand Down

0 comments on commit 1fbdadc

Please sign in to comment.