Skip to content

Commit

Permalink
feat: switch pr steps to use node 18 (was 16)
Browse files Browse the repository at this point in the history
(cherry picked from commit ef7ca87)
  • Loading branch information
iwalmsley committed Jun 21, 2024
1 parent a9fd50b commit 1a4fda4
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_authorisation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_chassis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_infrastructure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ env.CONTAINER }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/pr_vulnerabilities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "18"
- name: Check vulnerabilities
run: ./build/check-dependencies.sh
shell: bash
4 changes: 2 additions & 2 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: "16"
node-version: "18"
- name: Validate build
run: ./build/validate-build.sh ${{ matrix.container }}
shell: bash
Expand All @@ -47,4 +47,4 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: ./build/build-container.sh ${{ matrix.container }} --push
shell: bash
shell: bash

0 comments on commit 1a4fda4

Please sign in to comment.