chore: review

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2026-01-26 08:27:33 -03:00
parent be378e941b
commit a801b0bdda
No known key found for this signature in database
5 changed files with 14 additions and 11 deletions

View file

@ -46,8 +46,6 @@ jobs:
-
name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.18
-
name: Check
uses: ./

View file

@ -34,5 +34,5 @@ outputs:
description: 'Build result metadata'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'

12
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
import tmp = require('tmp');
import * as tmp from 'tmp';
tmp.setGracefulCleanup();
const tmpdir = tmp.dirSync({template: 'goreleaser-XXXXXX'});

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"esModuleInterop": true,
"target": "es6",
"module": "commonjs",
"target": "ES2024",
"module": "ESNext",
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
@ -10,6 +10,9 @@
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "node",
"strict": false,
"skipLibCheck": true
},
"exclude": [
"node_modules",