ci: bump the github-actions group across 1 directory with 8 updates#1710
Merged
tejaskash merged 1 commit intoJul 8, 2026
Merged
Conversation
Bumps the github-actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `3` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [aws-actions/aws-secretsmanager-get-secrets](https://github.com/aws-actions/aws-secretsmanager-get-secrets) | `2` | `3` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2.1.1` | `3.0.3` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | 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 `actions/create-github-app-token` from 1 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](actions/create-github-app-token@v1...v3) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `aws-actions/aws-secretsmanager-get-secrets` from 2 to 3 - [Release notes](https://github.com/aws-actions/aws-secretsmanager-get-secrets/releases) - [Commits](aws-actions/aws-secretsmanager-get-secrets@v2...v3) Updates `slackapi/slack-github-action` from 2.1.1 to 3.0.3 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](slackapi/slack-github-action@v2.1.1...v3.0.3) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/aws-secretsmanager-get-secrets dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: slackapi/slack-github-action dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Coverage Report
|
tejaskash
approved these changes
Jul 8, 2026
3 tasks
aidandaly24
added a commit
that referenced
this pull request
Jul 8, 2026
…@v7 fork block) (#1716) * ci: restore fork-PR E2E/tarball checkout after actions/checkout@v7 bump #1710 bumped actions/checkout v6 -> v7. v7 refuses to check out fork-PR code in a `pull_request_target` workflow by default ("pwn request" protection), failing at the checkout step: Refusing to check out fork pull request code from a 'pull_request_target' workflow. ... set 'allow-unsafe-pr-checkout: true' This broke the `e2e` and `pr-tarball` jobs for every fork PR (they run on pull_request_target and check out `github.event.pull_request.head.sha`). Both jobs already gate on the `authorize` job (actor must be in AUTHORIZED_USERS) before they ever run, so the fork checkout only happens for pre-authorized users — that gate is the real pwn-request mitigation, and it's exactly the protection v7's default is conservatively enforcing. Opt back in with `allow-unsafe-pr-checkout: true` so authorized fork PRs get E2E/tarball coverage again (restores the pre-#1710 behavior while keeping checkout on v7). * ci: gate fork-PR E2E/tarball on PR author, not github.actor (fixes pwn-request) Supersedes the earlier `allow-unsafe-pr-checkout: true` approach, which was unsafe: the `authorize` gate checked `github.actor` (who triggered the run), not the PR author (whose code runs). A trusted actor pushing to a fork PR (e.g. a maintainer editing an external contributor's PR) would pass the gate and then execute the fork's code with the AWS role / contents:write token / App token — a classic pull_request_target "pwn request". Fix: - Gate on `github.event.pull_request.user.login` (the PR author) against AUTHORIZED_USERS. External-author fork PRs now SKIP cleanly (no failure, no code execution with secrets) instead of running or hard-failing at checkout. - Drop `allow-unsafe-pr-checkout: true`; checkout@v7's fork-checkout refusal stays in force for any fork PR that reaches the step. Authorized authors' on-repo PRs run normally; fork PRs get E2E via manual workflow_dispatch after review (as the workflow already documents). Curated AUTHORIZED_USERS is intentionally kept (rather than any-write-collaborator) for these secret-bearing jobs. * ci: also unblock pr-security-review fork checkout (author-gated, read-only) Completes the checkout@v7 fork-PR fix: pr-security-review.yml has the same pull_request_target + checkout@v7 + fork-head pattern (its ref is computed in a step, so it was easy to miss). Unlike e2e/pr-tarball, this job: - is ALREADY gated on the PR author's write/admin permission (getCollaboratorPermissionLevel), so external forks already skip it, and - only READS the code (compute diff, build prompt, run the review) — it never executes fork code (no npm ci / npm scripts). So `allow-unsafe-pr-checkout: true` is the correct, low-risk fix here (reviewing the PR head is the job's whole purpose), whereas for the secret-executing e2e/pr-tarball jobs we instead moved to author-based gating and dropped the flag. * ci: restore allow-unsafe-pr-checkout for e2e/pr-tarball (now author-gated) Addresses review feedback: authorized maintainers routinely open PRs from their own forks, so gating on the author WITHOUT allow-unsafe made those normal fork PRs hard-fail at checkout@v7. Now that the authorize gate keys on the PR author (github.event.pull_request.user.login in AUTHORIZED_USERS), re-adding allow-unsafe-pr-checkout is safe: external authors skip at the gate, so only trusted authors' code is ever checked out — and their fork PRs run normally again. (The earlier scanner flag was about allow-unsafe combined with the ACTOR-based gate, which this no longer uses.) All three pull_request_target workflows now use the same author-gate + allow-unsafe combination.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the github-actions group with 8 updates in the / directory:
47134647232.1.13.0.35656Updates
actions/checkoutfrom 4 to 7Release notes
Sourced from actions/checkout's releases.
... (truncated)
Changelog
Sourced from actions/checkout's changelog.
... (truncated)
Commits
9c091bbupdate error wording (#2467)1044a6dgetting ready for checkout v7 release (#2464)f028218Bump the minor-npm-dependencies group across 1 directory with 3 updates (#2462)d914b26upgrade module to esm and update dependencies (#2463)537c7efBump@actions/coreand@actions/tool-cacheand Remove uuid (#2459)130a169Bump js-yaml from 4.1.0 to 4.2.0 (#2461)7d09575Bump flatted from 3.3.1 to 3.4.2 (#2460)0f9f3aaBump actions/publish-immutable-action (#2458)f9e715ablock checking out fork pr for pull_request_target and workflow_run (#2454)df4cb1cUpdate changelog for v6.0.3 (#2446)Updates
actions/create-github-app-tokenfrom 1 to 3Release notes
Sourced from actions/create-github-app-token's releases.
... (truncated)
Changelog
Sourced from actions/create-github-app-token's changelog.
Commits
bcd2ba4chore(main): release 3.2.0 (#370)f24bbd8fix: validate private-key input (#376)363531bdocs: capitalize Git as a proper noun in README (#374)fd28011docs: update procedure to configure Git (#287)85eb8ddfeat: support full repository names inrepositoriesinput (#372)c9aabb8build(deps-dev): bump yaml from 2.8.3 to 2.8.4 in the development-dependencie...e02e816build(deps-dev): bump undici from 7.24.6 to 8.2.0 (#366)8d835bfbuild(deps-dev): bump esbuild from 0.27.4 to 0.28.0 in the development-depend...952a2a7feat: add support for enterprise-level GitHub Apps (#263)43e5c34fix(deps): bump@actions/corefrom 3.0.0 to 3.0.1 in the production-dependenc...Updates
actions/setup-nodefrom 4 to 6Release notes
Sourced from actions/setup-node's releases.
... (truncated)
Commits
48b55a0Update Node.js versions in versions.yml and bump package to v6.4.0 (#1533)ab72c7eUpgrade@actionsdependencies (#1525)53b8394Bump minimatch from 3.1.2 to 3.1.5 (#1498)54045abScope test lockfiles by package manager and update cache tests (#1495)c882bffReplace uuid with crypto.randomUUID() (#1378)774c1d6feat(node-version-file): support parsingdevEnginesfield (#1283)efcb663fix: remove hardcoded bearer (#1467)d02c89dFix npm audit issues (#1491)6044e13Docs: bump actions/checkout from v5 to v6 (#1468)8e49463Fix README typo (#1226)Updates
actions/upload-artifactfrom 4 to 7Release notes
Sourced from actions/upload-artifact's releases.
... (truncated)
Commits
043fb46Merge pull request #797 from actions/yacaovsnc/update-dependency634250cInclude changes in typespec/ts-http-runtime 0.3.5e454baaReadme: bump all the example versions to v7 (#796)74fad66Update the readme with direct upload details (#795)bbbca2dSupport direct file uploads (#764)589182cUpgrade the module to ESM and bump dependencies (#762)47309c9Merge pull request #754 from actions/Link-/add-proxy-integration-tests02a8460Add proxy integration testb7c566aMerge pull request #745 from actions/upload-artifact-v6-releasee516bc8docs: correct description of Node.js 24 support in READMEUpdates
aws-actions/aws-secretsmanager-get-secretsfrom 2 to 3Release notes
Sourced from aws-actions/aws-secretsmanager-get-secrets's releases.
... (truncated)
Commits
2cb1a46Bump handlebars from 4.7.8 to 4.7.9 (#301)ebbee5cGrant write permissions to the release workflow (#300)3a411b6Bump version from 2.0.11 to 3.0.0 (#297)07435e3Remove actions/github, update actions/core (#299)bed0d09Update dependencies (#298)ca8dc62chore: Bump flatted from 3.3.3 to 3.4.2 (#295)9c2003cUpdate dependencies (#292)8d2df8dAdd versioned user-agent to AWS API calls (#272)aa511bffix: use OIDC for Codecov (#266)3f3c975Replace push dist/ with check dist/ (#256)Updates
slackapi/slack-github-actionfrom 2.1.1 to 3.0.3Release notes
Sourced from slackapi/slack-github-action's releases.
... (truncated)
Changelog
Sourced from slackapi/slack-github-action's changelog.
Commits
45a88b9chore: release1c0bcf0chore: release (#606)66834e4feat: add instrumentation to address error rates (#600)0fe0f90build(deps): bump@actions/githubfrom 9.0.0 to 9.1.1 (#605)c5e7059build(deps): bump@slack/web-apifrom 7.15.0 to 7.15.1 (#604)0325526build(deps-dev): bump@biomejs/biomefrom 2.4.10 to 2.4.13 (#601)900cd3ebuild(deps-dev): bump@types/nodefrom 24.12.0 to 24.12.2 (#603)53fdcffbuild(deps): bump@actions/corefrom 3.0.0 to 3.0.1 (#602)26856ccbuild(deps): bump slackapi/slack-github-action from 3.0.1 to 3.0.2 (#596)feba1e2ci: skip publish step if no release is needed (#599)Updates
actions/cachefrom 5 to 6Release notes
Sourced from actions/cache's releases.
... (truncated)
Changelog
Sourced from actions/cache's changelog.
... (truncated)
Commits