Skip to content

Commit 941099c

Browse files
authored
chore: bump Node version to node20 (#13)
* update to nodejs20 * fix type error
1 parent e641d62 commit 941099c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ branding:
77
color: "blue"
88

99
runs:
10-
using: "node16"
10+
using: "node20"
1111
pre: "dist/pre.js"
1212
main: "dist/index.js"
1313
post: "dist/post.js"
@@ -23,7 +23,7 @@ inputs:
2323
overwrite:
2424
description: "Overwrite target container image with slimmed version (only if target is not ID)"
2525
required: false
26-
default: false
26+
default: "false"
2727
version:
2828
description: "Define Slim version"
2929
required: false

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async function get_slim() {
5555
KERNEL = os.platform();
5656
MACHINE = os.arch();
5757

58-
// Determine the target distrubution
58+
// Determine the target distribution
5959
if (KERNEL === 'linux') {
6060
EXT = 'tar.gz';
6161
if (MACHINE === 'x64') {

0 commit comments

Comments
 (0)