Skip to content

chore(deps): bump actions/checkout from 7.0.0 to 7.0.1 - #291

Merged
mergify[bot] merged 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7.0.1
Aug 5, 2026
Merged

chore(deps): bump actions/checkout from 7.0.0 to 7.0.1#291
mergify[bot] merged 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor

Bumps actions/checkout from 7.0.0 to 7.0.1.

Release notes

Sourced from actions/checkout's releases.

v7.0.1

What's Changed

Full Changelog: actions/checkout@v7...v7.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 24, 2026
@mergify

mergify Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

Merge Protections

🟢 All 6 merge protections satisfied — ready to merge.

Show 6 satisfied protections

🟢 🤖 Continuous Integration

  • all of:
    • check-success=Test with Python 3.10
    • check-success=Test with Python 3.11
    • check-success=Test with Python 3.12
    • check-success=Test with Python 3.9
    • check-success=semgrep

🟢 👀 Review Requirements

  • any of:
    • author = dependabot[bot]
    • #approved-reviews-by>=1

🟢 Enforce conventional commit

Make sure that we follow https://www.conventionalcommits.org/en/v1.0.0/

  • title ~= ^(fix|feat|internal|docs|style|refactor|perf|test|build|ci|chore|revert|ui)(?:\(.+\))?!?:

🟢 🔎 Reviews

  • #changes-requested-reviews-by = 0
  • #review-requested = 0
  • #review-threads-unresolved = 0

🟢 📕 PR description

  • body ~= (?ms:.{48,})

🟢 🚦 Auto-queue

When all merge protections are satisfied, this pull request will be queued automatically.

@mergify
mergify Bot had a problem deploying to Mergify Merge Protections July 24, 2026 07:04 Failure
mergify Bot pushed a commit that referenced this pull request Aug 5, 2026
CI has failed on every pull request since 2026-07-01. The last green run
was 2026-06-30 (run 28426521860). Nothing in this repo changed: the only
commits touching `.github/workflows/` since then are Dependabot tag bumps,
and the `uses:` refs have looked like this for the repo's whole life.

What changed is outside the repo. `tools/semgrep` runs
`semgrep --config=auto`, which resolves the Community rule registry **at
run time**, and that registry now carries
`yaml.github-actions.security.github-actions-mutable-action-tag`. It
reports 7 blocking findings — every `uses:` names a mutable tag instead of
a 40-character commit SHA:

| file | lines |
|---|---|
| `.github/workflows/ci.yaml` | 19, 20, 27, 43 |
| `.github/workflows/release.yml` | 16, 17, 25 |

That single red job is why ruff 0.15.19 → 0.16.0, actions/checkout,
actions/setup-python and even Mergify's own configuration-deprecation PRs
are all stuck. The loop is self-sustaining: Dependabot writes *mutable
tags* when it bumps an action, so its own GHA bumps trip the rule they
just re-introduced. #291 is literally "bump actions/checkout from 7.0.0 to
7.0.1" failing on the tag it wrote.

## The one that is not a lint nit

`release.yml:25` was `pypa/gh-action-pypi-publish@release/v1` — a mutable
**branch**, not even a tag, on the job that holds this project's PyPI
publish rights (`environment: release`, `id-token: write`). A push to that
branch upstream — by its owner or by anyone who compromises the
repository — runs with permission to publish `sql-compare` to PyPI on the
next release, and there is no version number to notice it by. This is the
real supply-chain exposure here; it is pinned deliberately, not
incidentally.

## What this does and does not cost

Every ref is pinned to the SHA its current tag resolves to, so behaviour
is unchanged today — including `gh-action-pypi-publish`, where
`dc37677` (v1.14.2) is exactly where `release/v1` points right now. The
trailing `# vX.Y.Z` comment keeps the file readable and is the field
Dependabot rewrites. No new maintenance: Dependabot updates SHA-pinned
actions natively and `.github/dependabot.yml` already enables the
`github-actions` ecosystem.

Verified locally against the exact CI image — `semgrep/semgrep:1.138.0`
running `semgrep --config=auto --error --timeout=15 .` over the same 18
targets with the same 329 rules: **7 blocking findings before, 0 after.**

## What this does NOT fix — a call for @jd

Pinning the semgrep *image* pins the **engine**, not the **rules**.
`--config=auto` still resolves the registry live, which is precisely how
this repo went red with zero commits, and it will happen again the next
time the Community ruleset gains a rule this repo trips. Green today does
not mean green tomorrow. Three options, none of them free:

1. **Pin a ruleset** — `--config=p/<ruleset>` or a versioned registry
   pin. Keeps CI reproducible; new upstream rules only arrive when someone
   bumps them, which is also the downside.
2. **Vendor the rules** — copy the rule YAML into the repo. Fully
   reproducible and diffable; someone has to own refreshing it.
3. **Accept the drift** — status quo. Zero effort, and the fleet
   occasionally goes red with no local cause. Note the monorepo has
   explicitly made this choice and recorded it in its root `CLAUDE.md`.

Changing the security posture is a maintainer call, so this PR does not
make it. It only unblocks CI.
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions/checkout-7.0.1 branch from 2369941 to 36baced Compare August 5, 2026 13:52
@mergify
mergify Bot deployed to Mergify Merge Protections August 5, 2026 13:52 Active
@mergify

mergify Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Merge Queue Status

  • Entered queue2026-08-05 13:55 UTC · Rule: dependencies · triggered by merge protections
  • 🚫 Left the queue2026-08-05 14:08 UTC · at 36baced2d22d58c7ad549be37a643d6a1f2edda9

This pull request spent 13 minutes 8 seconds in the queue, with no time running CI.

Reason

The pull request conflicts with the base branch

The pull request was held in the queue, conflicting with 1 pull request ahead of it. The conflict became a base branch one after #293 merged.

Hint

You should update or rebase your pull request.

If you want to requeue this pull request, you can post a @mergifyio queue comment.

Requeued — the merge queue status continues in this comment ↓.

@mergify

mergify Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

@dependabot[bot] this pull request is now in conflict 😩

@mergify mergify Bot added the conflict label Aug 5, 2026
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@9c091bb...3d3c42e)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions/checkout-7.0.1 branch from 36baced to ebc6fb3 Compare August 5, 2026 14:09
@mergify
mergify Bot deployed to Mergify Merge Protections August 5, 2026 14:09 Active
@mergify

mergify Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Merge Queue Status

  • Entered queue2026-08-05 14:16 UTC · Rule: dependencies · triggered by merge protections
  • Checks skipped · PR is already up-to-date
  • Merged2026-08-05 14:22 UTC · at ebc6fb3f0886776c56eb0684dcf8dafb3427e511 · fast-forward

This pull request spent 5 minutes 46 seconds in the queue, including 6 seconds running CI.

Required conditions to merge

@mergify mergify Bot added the queued label Aug 5, 2026
@mergify
mergify Bot merged commit ebc6fb3 into main Aug 5, 2026
7 checks passed
@mergify
mergify Bot deleted the dependabot/github_actions/actions/checkout-7.0.1 branch August 5, 2026 14:22
@mergify mergify Bot removed the queued label Aug 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Development

Successfully merging this pull request may close these issues.

0 participants