Skip to content

Commit

Permalink
update CI build to use setup-node@v4; explicitly request node 22.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pleary committed Jul 3, 2024
1 parent 62773c9 commit 9903f6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '22.x'
node-version: '22.4'

- name: Configure sysctl limits
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# because node-mapnik is not available in arm64
FROM --platform=linux/amd64 node:22 as base

RUN apt-get update -qq && apt-cache search postgresql && apt-get install -y postgresql-client-15
RUN apt-get update -qq && apt-get install -y postgresql-client-15

ENV NODE_ENV=development

Expand Down

0 comments on commit 9903f6a

Please sign in to comment.