Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
node-version: 24.15.0
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
node-version: 24.15.0
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
node-version: 24.15.0
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Configure Git credentials
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
# stages and verify that the image is correct.

# Extract the pnpm version from the package.json file and store it in an environment variable.
FROM node:20-slim AS version-extract
FROM node:20.20.1-slim AS version-extract
WORKDIR /app
COPY package.json .
RUN apt-get update && \
apt-get install -y jq && \
echo "PNPM_VERSION=$(jq -r .packageManager package.json | sed 's/pnpm@//')" >> /tmp/env-vars

FROM node:20-slim AS build
FROM node:20.20.1-slim AS build
WORKDIR /app
COPY --from=version-extract /tmp/env-vars /tmp/env-vars
RUN . /tmp/env-vars && npm install -g pnpm@${PNPM_VERSION}
Expand All @@ -46,7 +46,7 @@ LABEL application="airnode-feed" description="Airnode feed container"
FROM build AS deployed-airnode-feed

RUN pnpm --filter=@api3/airnode-feed --prod deploy deployed-airnode-feed
FROM node:20-slim AS airnode-feed
FROM node:20.20.1-slim AS airnode-feed
WORKDIR /app

# Update package lists and install wget
Expand All @@ -67,7 +67,7 @@ LABEL application="signed-api" description="Signed API container"
FROM build AS deployed-signed-api

RUN pnpm --filter=@api3/signed-api --prod deploy deployed-signed-api
FROM node:20-slim AS signed-api
FROM node:20.20.1-slim AS signed-api
WORKDIR /app

# Update package lists and install wget
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "signed-api",
"version": "4.4.0",
"engines": {
"node": ">=18.20.5",
"pnpm": "^10.26.2"
"node": ">=18.20.8",
"pnpm": "^10.33.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,7 +31,7 @@
"@api3/eslint-plugin-commons": "^3.1.1",
"eslint": "^8.57.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/node": "^24.12.2",
"husky": "^9.1.7",
"is-wsl": "^2.2.0",
"jest": "^30.3.0",
Expand All @@ -41,5 +41,5 @@
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.26.2"
"packageManager": "pnpm@10.33.0"
}
2 changes: 1 addition & 1 deletion packages/airnode-feed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@api3/airnode-feed",
"version": "4.4.0",
"engines": {
"node": ">=18.20.5"
"node": ">=18.20.8"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "e2e",
"version": "1.0.0",
"engines": {
"node": ">=18.20.5"
"node": ">=18.20.8"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/performance-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "e2e",
"version": "1.1.0",
"engines": {
"node": ">=18.20.5"
"node": ">=18.20.8"
},
"scripts": {
"run-script": "ts-node --transpileOnly",
Expand Down
2 changes: 1 addition & 1 deletion packages/signed-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@api3/signed-api",
"version": "4.4.0",
"engines": {
"node": ">=18.20.5"
"node": ">=18.20.8"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading