diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 858313b..1253b1e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,5 +20,5 @@ jobs: gpg_private_key: ${{secrets.BOT_GPG_SIGN_KEY}} git_user_signingkey: true - run: npm ci - - run: git diff --quiet || git commit -am Build -S FD5E66973D2B8B86 + - run: git diff --quiet || git commit -am Build --gpg-sign=FD5E66973D2B8B86 - run: git push --signed=if-asked diff --git a/package-lock.json b/package-lock.json index cd46dd7..e131511 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.0.1", "license": "MIT", "dependencies": { - "@actions/core": "^1.10", + "@actions/core": "^1.10.1", "@actions/tool-cache": "^2" }, "devDependencies": { diff --git a/package.json b/package.json index 495662a..8da7367 100644 --- a/package.json +++ b/package.json @@ -13,19 +13,21 @@ "bugs": { "url": "https://github.com/nodenv/actions/issues" }, - "actions": "node-version setup-nodenv", + "config": { + "actions": "node-version setup-nodenv" + }, "scripts": { "clean": "git checkout -- */dist", "lint": "standard --fix", "posttest": "npm run lint", - "test": "jest $npm_package_actions", - "prepare": "for a in $npm_package_actions; do (cd $a && echo $PWD && ncc build); done", + "test": "jest $npm_package_config_actions", + "prepare": "for a in $npm_package_config_actions; do (cd $a && echo $PWD && ncc build); done", "preversion": "npm run prepare", "version": "git add -- */dist", "postversion": "git push --follow-tags" }, "dependencies": { - "@actions/core": "^1.10", + "@actions/core": "^1.10.1", "@actions/tool-cache": "^2" }, "devDependencies": {