Skip to content

Commit 04d1a3b

Browse files
authored
Merge pull request #954 from crazy-max/update-node20
chore: node 20 as default runtime
2 parents 0a97817 + 1a4d1a1 commit 04d1a3b

9 files changed

+841
-595
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/dist/**
2+
/coverage/**
3+
/node_modules/**

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"env": {
33
"node": true,
4-
"es2021": true,
4+
"es6": true,
55
"jest": true
66
},
77
"extends": [
88
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
910
"plugin:@typescript-eslint/recommended",
1011
"plugin:jest/recommended",
1112
"plugin:prettier/recommended"

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ outputs:
112112
description: 'Build result metadata'
113113

114114
runs:
115-
using: 'node16'
115+
using: 'node20'
116116
main: 'dist/index.js'
117117
post: 'dist/index.js'

dev.Dockerfile

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG NODE_VERSION=16
4-
ARG DOCKER_VERSION=20.10.13
5-
ARG BUILDX_VERSION=0.8.0
3+
ARG NODE_VERSION=20
64

75
FROM node:${NODE_VERSION}-alpine AS base
86
RUN apk add --no-cache cpio findutils git
@@ -62,15 +60,10 @@ RUN --mount=type=bind,target=.,rw \
6260
--mount=type=cache,target=/src/node_modules \
6361
yarn run lint
6462

65-
FROM docker:${DOCKER_VERSION} as docker
66-
FROM docker/buildx-bin:${BUILDX_VERSION} as buildx
67-
6863
FROM deps AS test
6964
RUN --mount=type=bind,target=.,rw \
7065
--mount=type=cache,target=/src/node_modules \
71-
--mount=type=bind,from=docker,source=/usr/local/bin/docker,target=/usr/bin/docker \
72-
--mount=type=bind,from=buildx,source=/buildx,target=/usr/libexec/docker/cli-plugins/docker-buildx \
73-
yarn run test --coverageDirectory=/tmp/coverage
66+
yarn run test --coverage --coverageDirectory=/tmp/coverage
7467

7568
FROM scratch AS test-coverage
7669
COPY --from=test /tmp/coverage /

dist/index.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+21-23
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
"main": "lib/main.js",
55
"scripts": {
66
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
7-
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
8-
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
9-
"test": "jest --coverage",
7+
"lint": "yarn run prettier && yarn run eslint",
8+
"format": "yarn run prettier:fix && yarn run eslint:fix",
9+
"eslint": "eslint --max-warnings=0 .",
10+
"eslint:fix": "eslint --fix .",
11+
"prettier": "prettier --check \"./**/*.ts\"",
12+
"prettier:fix": "prettier --write \"./**/*.ts\"",
13+
"test": "jest",
1014
"all": "yarn run build && yarn run format && yarn test"
1115
},
1216
"repository": {
@@ -19,33 +23,27 @@
1923
"build",
2024
"push"
2125
],
22-
"author": "Docker",
23-
"contributors": [
24-
{
25-
"name": "CrazyMax",
26-
"url": "https://crazymax.dev"
27-
}
28-
],
26+
"author": "Docker Inc.",
2927
"license": "Apache-2.0",
3028
"dependencies": {
3129
"@actions/core": "^1.10.0",
32-
"@docker/actions-toolkit": "^0.8.0",
30+
"@docker/actions-toolkit": "^0.12.0",
3331
"handlebars": "^4.7.7"
3432
},
3533
"devDependencies": {
3634
"@types/csv-parse": "^1.2.2",
37-
"@types/node": "^16.18.21",
38-
"@typescript-eslint/eslint-plugin": "^5.56.0",
39-
"@typescript-eslint/parser": "^5.56.0",
40-
"@vercel/ncc": "^0.36.1",
41-
"eslint": "^8.36.0",
42-
"eslint-config-prettier": "^8.8.0",
43-
"eslint-plugin-jest": "^27.2.1",
44-
"eslint-plugin-prettier": "^4.2.1",
45-
"jest": "^29.5.0",
46-
"prettier": "^2.8.7",
47-
"ts-jest": "^29.0.5",
35+
"@types/node": "^20.5.9",
36+
"@typescript-eslint/eslint-plugin": "^6.6.0",
37+
"@typescript-eslint/parser": "^6.6.0",
38+
"@vercel/ncc": "^0.38.0",
39+
"eslint": "^8.48.0",
40+
"eslint-config-prettier": "^9.0.0",
41+
"eslint-plugin-jest": "^27.2.3",
42+
"eslint-plugin-prettier": "^5.0.0",
43+
"jest": "^29.6.4",
44+
"prettier": "^3.0.3",
45+
"ts-jest": "^29.1.1",
4846
"ts-node": "^10.9.1",
49-
"typescript": "^4.9.5"
47+
"typescript": "^5.2.2"
5048
}
5149
}

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ actionsToolkit.run(
4848
if (dockerConfig && dockerConfig.proxies) {
4949
for (const host in dockerConfig.proxies) {
5050
let prefix = '';
51-
if (dockerConfig.proxies.length > 1) {
51+
if (Object.keys(dockerConfig.proxies).length > 1) {
5252
prefix = ' ';
5353
core.info(host);
5454
}

0 commit comments

Comments
 (0)