Skip to content

Commit 48f8495

Browse files
dependabot[bot]satvik007claude
authored
chore(ci): bump the github-actions-all group with 5 updates (#71)
* chore(ci): bump the github-actions-all group with 5 updates Bumps the github-actions-all group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [pnpm/action-setup](https://github.com/pnpm/action-setup) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `3` | `5` | 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](actions/checkout@v4...v7) Updates `pnpm/action-setup` from 4 to 6 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](pnpm/action-setup@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `actions/cache` from 3 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all ... Signed-off-by: dependabot[bot] <support@github.com> * ci: skip live API tests on Dependabot PRs Dependabot-triggered workflow runs use a separate secret store and don't receive the repository's Actions secrets, so the QAS_TEST_* env vars are empty and every live test fails. Gate the live-test step on the actor so Dependabot PRs (which can't authenticate) skip it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Satvik Choudhary <satvikchoudhary@gmail.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 135a243 commit 48f8495

4 files changed

Lines changed: 15 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v7
1616

1717
- name: Set up pnpm
18-
uses: pnpm/action-setup@v4
18+
uses: pnpm/action-setup@v6
1919

2020
- name: Use Node.js 24
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: 24
2424
cache: 'pnpm'
@@ -39,10 +39,10 @@ jobs:
3939
run: node ./build/bin/qasphere.js --help
4040

4141
- name: Set up Docker Buildx
42-
uses: docker/setup-buildx-action@v3
42+
uses: docker/setup-buildx-action@v4
4343

4444
- name: Cache Docker images
45-
uses: actions/cache@v3
45+
uses: actions/cache@v5
4646
with:
4747
path: /tmp/.buildx-cache
4848
key: ${{ runner.os }}-docker-${{ hashFiles('mnode-test/docker-test.sh') }}
@@ -61,6 +61,9 @@ jobs:
6161
run: cd mnode-test && ./docker-test.sh
6262

6363
- name: Run live API tests
64+
# Dependabot PRs don't have access to repository secrets, so live tests
65+
# would always fail. Skip them for Dependabot-triggered runs.
66+
if: github.actor != 'dependabot[bot]'
6467
env:
6568
QAS_TEST_URL: ${{ secrets.QAS_TEST_URL }}
6669
QAS_TEST_TOKEN: ${{ secrets.QAS_TEST_TOKEN }}

.github/workflows/claude-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
actions: read
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v7
2525
with:
2626
fetch-depth: 1
2727

.github/workflows/claude.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v7
4141
with:
4242
fetch-depth: 1
4343

4444
- name: Set up pnpm
45-
uses: pnpm/action-setup@v4
45+
uses: pnpm/action-setup@v6
4646

4747
- name: Use Node.js 24
48-
uses: actions/setup-node@v4
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version: 24
5151
cache: 'pnpm'

.github/workflows/npm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v7
1818

1919
- name: Set up pnpm
20-
uses: pnpm/action-setup@v4
20+
uses: pnpm/action-setup@v6
2121

2222
- name: Setup Node.js
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: '24.x'
2626
cache: 'pnpm'

0 commit comments

Comments
 (0)