diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b3719bf..55cf1e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,7 @@ jobs: if: hashFiles('dist/index.js.auths.json') != '' uses: ./ with: - identity-bundle-json: ${{ secrets.AUTHS_CI_IDENTITY_BUNDLE_JSON }} + identity: ${{ secrets.AUTHS_CI_IDENTITY_BUNDLE_JSON }} artifact-paths: 'dist/index.js' fail-on-unattested: true fail-on-unsigned: false @@ -110,20 +110,20 @@ jobs: ### Usage ```yaml - - uses: auths-dev/auths-verify-github-action@${{ github.ref_name }} + - uses: auths-dev/verify@${{ github.ref_name }} with: - allowed-signers: '.auths/allowed_signers' + identity: '.auths/allowed_signers' ``` **New: Artifact verification** ```yaml - - uses: auths-dev/auths-verify-github-action@${{ github.ref_name }} + - uses: auths-dev/verify@${{ github.ref_name }} with: - identity-bundle: ${{ secrets.AUTHS_IDENTITY_BUNDLE }} + identity: ${{ secrets.AUTHS_IDENTITY_BUNDLE }} artifact-paths: 'dist/*.tar.gz' ``` - See the [README](https://github.com/auths-dev/auths-verify-github-action#readme) for full configuration options. + See the [README](https://github.com/auths-dev/verify#readme) for full configuration options. - name: Update floating major tag run: | diff --git a/package-lock.json b/package-lock.json index d944c11..81e7093 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@auths/verify-action", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@auths/verify-action", - "version": "1.2.0", + "version": "1.2.1", "license": "MIT", "dependencies": { "@actions/cache": "^3.2.4", diff --git a/package.json b/package.json index 737e040..ccec588 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@auths/verify-action", - "version": "1.2.0", + "version": "1.2.1", "description": "GitHub Action to verify commit signatures using Auths identity keys", "main": "dist/index.js", "scripts": {