mirror of
https://github.com/docker/build-push-action.git
synced 2026-04-05 12:59:24 +00:00
Update base node version
This commit is contained in:
parent
30c71162f1
commit
167d635852
4 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
node-version: '24'
|
||||
- uses: bufbuild/buf-setup-action@v1
|
||||
with:
|
||||
github_token: ${{ github.token }}
|
||||
|
|
|
|||
2
.github/workflows/verify-build.yml
vendored
2
.github/workflows/verify-build.yml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
node-version: '24'
|
||||
cache: 'npm'
|
||||
|
||||
- uses: bufbuild/buf-setup-action@v1
|
||||
|
|
|
|||
|
|
@ -122,6 +122,6 @@ outputs:
|
|||
description: 'Build result metadata'
|
||||
|
||||
runs:
|
||||
using: 'node20'
|
||||
using: 'node24'
|
||||
main: 'dist/index.js'
|
||||
post: 'dist/index.js'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
ARG NODE_VERSION=20
|
||||
ARG NODE_VERSION=24
|
||||
|
||||
FROM node:${NODE_VERSION}-alpine AS base
|
||||
RUN apk add --no-cache cpio findutils git
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue