From 802cee785b41d8057036fa52dea765bc248902c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 18:05:13 +0000 Subject: [PATCH] build(deps): bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/live-bench.yml | 6 +++--- .github/workflows/publish.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6e3386..a4ea2b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: '20', cache: 'npm' } - run: npm install --no-audit --no-fund - run: npm run lint @@ -54,7 +54,7 @@ jobs: needs: test steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: '20', cache: 'npm' } - run: npm install --no-audit --no-fund - run: npm run bench:dry @@ -67,7 +67,7 @@ jobs: permissions: { contents: read, id-token: write } steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: '20', registry-url: 'https://registry.npmjs.org' } - run: npm install --no-audit --no-fund - run: npm run build @@ -86,7 +86,7 @@ jobs: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY_BENCH }} steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: { node-version: '20', cache: 'npm' } - run: npm install --no-audit --no-fund && npm run build # Real benchmark via the built CLI against the committed standard prompt. diff --git a/.github/workflows/live-bench.yml b/.github/workflows/live-bench.yml index f0d943c..70214ed 100644 --- a/.github/workflows/live-bench.yml +++ b/.github/workflows/live-bench.yml @@ -19,8 +19,8 @@ jobs: live-anthropic: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: { node-version: '20', cache: 'npm' } - run: npm install --no-audit --no-fund - run: npm run build @@ -34,7 +34,7 @@ jobs: --cost-cap ${{ github.event.inputs.cost_cap }} --prompt-file ./bench/standard-prompt.md --json ./bench/live-results.json - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: live-anthropic path: ./bench/live-results.json diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ed3d9ab..efdaa6a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: id-token: write steps: - uses: actions/checkout@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 20 registry-url: https://registry.npmjs.org