diff --git a/.github/workflows/ecr.yml b/.github/workflows/ecr.yml index 91e6bb4ed..3fdb7a5ab 100644 --- a/.github/workflows/ecr.yml +++ b/.github/workflows/ecr.yml @@ -24,7 +24,7 @@ jobs: matrix: task: [api, pmtiles, events] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcddd8770..2477321df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Get tag id: tag diff --git a/.github/workflows/root.yml b/.github/workflows/root.yml index f6579d54c..14c105f58 100644 --- a/.github/workflows/root.yml +++ b/.github/workflows/root.yml @@ -17,13 +17,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ - name: Install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b9c38e93..94d81db0d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} @@ -41,13 +41,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ - name: Install @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} @@ -105,13 +105,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{github.event.pull_request.head.sha || github.sha}} - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ - name: Install diff --git a/api/package.json b/api/package.json index 335c2f10d..7426430af 100644 --- a/api/package.json +++ b/api/package.json @@ -20,7 +20,7 @@ "prod": "NODE_OPTIONS='--max-old-space-size=6144' node dist/index.js" }, "engines": { - "node": ">= 22" + "node": ">= 24" }, "repository": { "type": "git", diff --git a/api/web/package.json b/api/web/package.json index 11e330a42..2c226f089 100644 --- a/api/web/package.json +++ b/api/web/package.json @@ -4,7 +4,7 @@ "version": "12.28.0", "private": true, "engines": { - "node": ">= 22" + "node": ">= 24" }, "scripts": { "serve": "DEV=true vite serve --port 8080", @@ -88,4 +88,4 @@ "> 1%", "last 2 versions" ] -} \ No newline at end of file +} diff --git a/package.json b/package.json index 2bdbd27d7..d37bbca94 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "postversion": "node bin/version.js && git commit -am \"Sync Versions\" && git push" }, "engines": { - "node": ">= 22" + "node": ">= 24" }, "repository": { "type": "git", diff --git a/tasks/events/package.json b/tasks/events/package.json index cb702dc63..e080ee6d3 100644 --- a/tasks/events/package.json +++ b/tasks/events/package.json @@ -4,7 +4,7 @@ "type": "module", "private": true, "engines": { - "node": ">= 22" + "node": ">= 24" }, "scripts": { "test": "StackName='test' test/test", diff --git a/tasks/pmtiles/package.json b/tasks/pmtiles/package.json index 79ba03dcf..6153e34cb 100644 --- a/tasks/pmtiles/package.json +++ b/tasks/pmtiles/package.json @@ -4,7 +4,7 @@ "type": "module", "private": true, "engines": { - "node": ">= 22" + "node": ">= 24" }, "scripts": { "check": "tsc --noEmit",