Skip to content

Commit

Permalink
Merge pull request #7446 from jrjohnson/fix-pinned-node
Browse files Browse the repository at this point in the history
Fix pinned node version
  • Loading branch information
stopfstedt authored Oct 3, 2023
2 parents 64338a9 + bf2ab84 commit 665585f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: npm
- name: Install Dependencies
run: npm ci
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: npm
- run: npm ci
- run: npm run test:ember
Expand All @@ -99,7 +99,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: npm
- run: npm ci
- run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.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@v3
with:
node-version: 18.7
node-version: 18.17
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.7
node-version: 18.17
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-transitive-dependencies.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@v3
with:
node-version: 18.7
node-version: 18.17
- name: remove and re-create lock file
run: |
rm package-lock.json
Expand Down

0 comments on commit 665585f

Please sign in to comment.