Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '24'
cache: 'yarn'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12 as install
FROM node:24 as install
WORKDIR /build
COPY tsconfig.json .
COPY package.json .
Expand All @@ -9,7 +9,7 @@ COPY src/ src/
FROM install as build
RUN yarn build

FROM node:12 as prod-build
FROM node:24 as prod-build
WORKDIR /out
COPY package.json .
RUN yarn install --production
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ inputs:
required: false
default: 120 # seconds
runs:
using: 'node20'
using: 'node24'
main: 'dist/action.js'
16 changes: 10 additions & 6 deletions node_modules/.yarn-integrity

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

Loading