diff --git a/README.md b/README.md index 10c2306..e85023b 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ jobs: with: fetch-depth: 0 - - uses: Conalh/ScopeTrail@v0.1.7 + - uses: Conalh/ScopeTrail@v0.1.8 with: fail-on: none ``` diff --git a/docs/PILOT.md b/docs/PILOT.md index 129bce7..3c22ade 100644 --- a/docs/PILOT.md +++ b/docs/PILOT.md @@ -23,7 +23,7 @@ jobs: with: fetch-depth: 0 - - uses: Conalh/ScopeTrail@v0.1.7 + - uses: Conalh/ScopeTrail@v0.1.8 with: fail-on: none ``` diff --git a/package-lock.json b/package-lock.json index 3df459e..b8874d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "scopetrail", - "version": "0.1.7", + "version": "0.1.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "scopetrail", - "version": "0.1.7", + "version": "0.1.8", "license": "MIT", "bin": { "scopetrail": "dist/index.js" diff --git a/package.json b/package.json index ceab559..b674098 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scopetrail", - "version": "0.1.7", + "version": "0.1.8", "description": "Code review for AI agent permission drift.", "type": "module", "bin": { diff --git a/test/action-metadata.test.mjs b/test/action-metadata.test.mjs index 5726b0d..9663201 100644 --- a/test/action-metadata.test.mjs +++ b/test/action-metadata.test.mjs @@ -31,7 +31,7 @@ test('public Action install tags match package version', async () => { const version = packageJson.version; const installTagPattern = new RegExp(`Conalh/ScopeTrail@v${version.replaceAll('.', '\\.')}`); - assert.equal(version, '0.1.7'); + assert.equal(version, '0.1.8'); assert.match(readme, installTagPattern); assert.match(pilotGuide, installTagPattern); });