From 9b6026aa898d1e30bde7eb185a963548506118ce Mon Sep 17 00:00:00 2001 From: bordumb Date: Sat, 4 Apr 2026 13:33:30 -0700 Subject: [PATCH 1/2] build: bump version to 1.2.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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": { From c03a581678bda5c09bd46c7f1f5ea32837d5dd47 Mon Sep 17 00:00:00 2001 From: bordumb Date: Sat, 4 Apr 2026 22:46:32 -0700 Subject: [PATCH 2/2] refactor: rename to verify --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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: |