Update dependencies & run on Node 20

This commit is contained in:
Philipp Trulson 2023-09-28 10:04:15 +02:00
parent 0bec274684
commit 70f3bf93bc
No known key found for this signature in database
GPG key ID: 7D15DA14D2E1182A
6 changed files with 453 additions and 568 deletions

View file

@ -18,7 +18,7 @@ jobs:
- name: Setup Node - name: Setup Node
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '16' node-version: '20'
cache: 'npm' cache: 'npm'
- name: Install CRDA - name: Install CRDA

View file

@ -90,5 +90,5 @@ outputs:
image-with-tag: image-with-tag:
description: 'Name of the image tagged with the first tag present' description: 'Name of the image tagged with the first tag present'
runs: runs:
using: 'node16' using: 'node20'
main: 'dist/index.js' main: 'dist/index.js'

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

987
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
{ {
"name": "buildah-build", "name": "buildah-build",
"version": "2.0", "version": "3.0",
"engines": { "engines": {
"node": "16" "node": "20"
}, },
"description": "Action for building OCI-compatible images using buildah", "description": "Action for building OCI-compatible images using buildah",
"repository": { "repository": {
@ -21,21 +21,21 @@
"author": "Red Hat", "author": "Red Hat",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "1.10.0", "@actions/core": "1.10.1",
"@actions/exec": "1.1.1", "@actions/exec": "1.1.1",
"@actions/io": "1.1.2", "@actions/io": "1.1.3",
"ini": "3.0.1" "ini": "4.1.1"
}, },
"devDependencies": { "devDependencies": {
"@redhat-actions/action-io-generator": "1.5.0", "@redhat-actions/action-io-generator": "1.5.0",
"@redhat-actions/eslint-config": "1.3.2", "@redhat-actions/eslint-config": "1.3.2",
"@redhat-actions/tsconfig": "1.2.0", "@redhat-actions/tsconfig": "1.2.0",
"@types/ini": "1.3.31", "@types/ini": "1.3.31",
"@types/node": "16.18.7", "@types/node": "^20.0",
"@typescript-eslint/eslint-plugin": "5.46.0", "@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "5.46.0", "@typescript-eslint/parser": "6.7.3",
"@vercel/ncc": "0.34.0", "@vercel/ncc": "0.38.0",
"eslint": "8.29.0", "eslint": "8.50.0",
"typescript": "4.9.4" "typescript": "5.2.2"
} }
} }