Skip to content

Commit

Permalink
feat: drop Node.js 16 (#5687)
Browse files Browse the repository at this point in the history
* feat: drop Node.js 16

* chore: remove lambda-node-18, i.e., the old lambda-node-16

* chore: remove support for alpine-3.16

* chore: fix tests

* chore: fix lint

* chore: move amazonlinux-2-* to unsupported Docker images
  • Loading branch information
jkomyno authored Dec 3, 2024
1 parent c3e729d commit f224d75
Show file tree
Hide file tree
Showing 220 changed files with 2,558 additions and 2,755 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-for-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'

Expand All @@ -50,7 +50,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'

Expand All @@ -75,7 +75,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'

Expand All @@ -100,7 +100,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-test-suite-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/failing-weekly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: ${{ github.job }}/${{ matrix.database }}/pnpm-lock.yaml

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/optional-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'pnpm'
cache-dependency-path: ${{ github.job }}/${{ matrix.generator }}/pnpm-lock.yaml

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/scripts/detect-jobs-to-run.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ async function detectJobsTorun({ filesChanged, GITHUB_REF }) {
'report-to-slack-failure', // Not a test but a job that posts to slack
'cleanup-runs', // Not a test but a job that cancels previous runs
'confirm_all_jobs_have_run', // Not a test but a job that confirms all tests have run (for Renovate)
'node16dot13', // TODO
]
return !jobsToIgnore.includes(key)
})
Expand Down
Loading

0 comments on commit f224d75

Please sign in to comment.