Skip to content

Commit

Permalink
ci: bump node version to 22
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopf committed Nov 27, 2024
1 parent 9fd05b8 commit 9932edd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Installing dependencies
run: npm ci
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Install deps, lint, build and test project
uses: ./.github/actions/install
# Every push to main deploys to staging
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# Uses the `docker/login-action` action to log in to the Container registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Installing dependencies
run: npm ci
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Install deps, lint, build and test project
uses: ./.github/actions/install
- name: Deploy PR Preview
Expand Down

0 comments on commit 9932edd

Please sign in to comment.