Update Action to Node 16 and handle set-output deprecation (#109)

* update: action runtime to node16

* chore: pin dependencies

* fix: build error with new TS version

* add: editorconfig

* chore: update all actions used in workflows

* update: readme action sample versions

* chore: bump developer dependencies

* chore: bump developer dependencies

* fix: eslint issues

* fix: broken buildah copy logic

* chore: address review feedback version bump
This commit is contained in:
K3rnelPan1c 2022-12-23 15:30:57 +00:00 committed by GitHub
parent 4b8d36793b
commit 5177407148
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 3587 additions and 4880 deletions

View file

@ -1,8 +1,8 @@
{
"name": "buildah-build",
"version": "1.0.0",
"version": "2.0",
"engines": {
"node": "12"
"node": "16"
},
"description": "Action for building OCI-compatible images using buildah",
"repository": {
@ -21,21 +21,21 @@
"author": "Red Hat",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2",
"ini": "^2.0.0"
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.2",
"ini": "3.0.1"
},
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.1.1",
"@types/ini": "^1.3.30",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.30.0",
"typescript": "^4.3.5"
"@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"
}
}