mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-18 00:21:22 +00:00
Update dependencies & run on Node 20
This commit is contained in:
parent
0bec274684
commit
70f3bf93bc
6 changed files with 453 additions and 568 deletions
2
.github/workflows/security_scan.yml
vendored
2
.github/workflows/security_scan.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install CRDA
|
||||
|
|
|
@ -90,5 +90,5 @@ outputs:
|
|||
image-with-tag:
|
||||
description: 'Name of the image tagged with the first tag present'
|
||||
runs:
|
||||
using: 'node16'
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
|
|
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
991
package-lock.json
generated
991
package-lock.json
generated
File diff suppressed because it is too large
Load diff
22
package.json
22
package.json
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "buildah-build",
|
||||
"version": "2.0",
|
||||
"version": "3.0",
|
||||
"engines": {
|
||||
"node": "16"
|
||||
"node": "20"
|
||||
},
|
||||
"description": "Action for building OCI-compatible images using buildah",
|
||||
"repository": {
|
||||
|
@ -21,21 +21,21 @@
|
|||
"author": "Red Hat",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "1.10.0",
|
||||
"@actions/core": "1.10.1",
|
||||
"@actions/exec": "1.1.1",
|
||||
"@actions/io": "1.1.2",
|
||||
"ini": "3.0.1"
|
||||
"@actions/io": "1.1.3",
|
||||
"ini": "4.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@redhat-actions/action-io-generator": "1.5.0",
|
||||
"@redhat-actions/eslint-config": "1.3.2",
|
||||
"@redhat-actions/tsconfig": "1.2.0",
|
||||
"@types/ini": "1.3.31",
|
||||
"@types/node": "16.18.7",
|
||||
"@typescript-eslint/eslint-plugin": "5.46.0",
|
||||
"@typescript-eslint/parser": "5.46.0",
|
||||
"@vercel/ncc": "0.34.0",
|
||||
"eslint": "8.29.0",
|
||||
"typescript": "4.9.4"
|
||||
"@types/node": "^20.0",
|
||||
"@typescript-eslint/eslint-plugin": "6.7.3",
|
||||
"@typescript-eslint/parser": "6.7.3",
|
||||
"@vercel/ncc": "0.38.0",
|
||||
"eslint": "8.50.0",
|
||||
"typescript": "5.2.2"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue