Skip to content

Commit

Permalink
fix: actions/setup-node requires the lts codename
Browse files Browse the repository at this point in the history
  • Loading branch information
tale committed Dec 15, 2023
1 parent a4d1244 commit b5563c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
deploy:
name: Deploy Manifests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -15,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts'
node-version: 'lts/Iron'

- name: Setup PNPM
uses: pnpm/action-setup@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
pull_request:

jobs:
deploy:
build:
name: Build Manifests
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -15,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts'
node-version: 'lts/Iron'

- name: Setup PNPM
uses: pnpm/action-setup@v2
Expand Down

0 comments on commit b5563c2

Please sign in to comment.