Skip to content

chore(deps): bump the actions group across 1 directory with 2 updates - #746

Merged
hyperpolymath merged 1 commit into
mainfrom
dependabot/github_actions/actions-f66bea6b28
Sep 8, 2026
Merged

hyperpolymath merged 1 commit into
mainfrom
dependabot/github_actions/actions-f66bea6b28

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the actions group with 2 updates in the / directory: actions/deploy-pages and editorconfig-checker/action-editorconfig-checker.

Updates actions/deploy-pages from 5.0.0 to 5.0.1

Release notes

Sourced from actions/deploy-pages's releases.

v5.0.1

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

Commits
  • 368f825 Merge pull request #444 from actions/yoannchaudet-deployment-polling-backoff
  • 7e97763 Validate deployment polling intervals
  • 0143e11 Add backoff and jitter to deployment polling
  • 5e98f10 Merge pull request #440 from actions/user/adwitiya
  • 8b0625a Improve deployment request test coverage
  • See full diff in compare view

Updates editorconfig-checker/action-editorconfig-checker from 2.2.0 to 3.0.0

Release notes

Sourced from editorconfig-checker/action-editorconfig-checker's releases.

editorconfig-checker v4

What's Changed

Full Changelog: editorconfig-checker/action-editorconfig-checker@v2.2.0...v3.0.0

Commits
  • 51f6331 Merge pull request #279 from editorconfig-checker/wf
  • c70f28e also run regen-dist workflow, when the workflow itself changes
  • d98bed8 prevent CI from running twice for dependabot PRs
  • f2fa590 Merge pull request #278 from editorconfig-checker/feat/ec-binary-name-rename
  • 19c56ad feat: support renamed editorconfig-checker release assets while keeping legac...
  • See full diff in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code major Major / load-bearing work labels Sep 7, 2026
@dependabot dependabot Bot added major Major / load-bearing work dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 7, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the actions group with 2 updates chore(deps): bump the actions group across 1 directory with 2 updates Sep 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions-f66bea6b28 branch from 0eda613 to 28f3d72 Compare September 8, 2026 06:42
Bumps the actions group with 2 updates in the / directory: [actions/deploy-pages](https://github.com/actions/deploy-pages) and [editorconfig-checker/action-editorconfig-checker](https://github.com/editorconfig-checker/action-editorconfig-checker).


Updates `actions/deploy-pages` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/actions/deploy-pages/releases)
- [Commits](actions/deploy-pages@cd2ce8f...368f825)

Updates `editorconfig-checker/action-editorconfig-checker` from 2.2.0 to 3.0.0
- [Release notes](https://github.com/editorconfig-checker/action-editorconfig-checker/releases)
- [Commits](editorconfig-checker/action-editorconfig-checker@840e866...51f6331)

---
updated-dependencies:
- dependency-name: actions/deploy-pages
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: editorconfig-checker/action-editorconfig-checker
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/github_actions/actions-f66bea6b28 branch from 28f3d72 to 6b8c081 Compare September 8, 2026 06:53
@sonarqubecloud

sonarqubecloud Bot commented Sep 8, 2026

Copy link
Copy Markdown

@hyperpolymath
hyperpolymath merged commit 257869d into main Sep 8, 2026
32 of 33 checks passed
@hyperpolymath
hyperpolymath deleted the dependabot/github_actions/actions-f66bea6b28 branch September 8, 2026 14:23
hyperpolymath added a commit that referenced this pull request Sep 8, 2026
…#746) (#754)

## The defect

PR #746 (`chore(deps): bump the actions group across 1 directory with 2
updates`) changed pinned action refs inside `governance-reusable.yml`,
`pages.yml` and `casket-pages.yml` but did **not** regenerate
`.github/workflows/actions.lock`. GitHub refuses to parse a workflow
whose actions are absent from its lockfile.

## Why it matters beyond this repo

Any repo pinning a standards reusable at main HEAD (`257869d3`) fails
with:

```
HTTP 422 - failed to parse workflow: error parsing called workflow
Invalid dependency lockfile ".../actions.lock@257869d...":
workflow ".github/workflows/governance-reusable.yml" references actions not
present in the lockfile:
editorconfig-checker/action-editorconfig-checker@51f6331
```

The caller then dies at **startup**: zero jobs, zero check runs. The
gate goes **absent, not red**, so the consuming repo's `main` looks
green while nothing ran. This currently blocks the estate-wide
consolidation pin-bump, whose whole purpose is to move callers onto main
HEAD.

Discovered by dispatching a single canary caller before propagating the
bump — the 422 above is the verbatim response.

## The fix

Resync the two stale lockfile entries to the shas the workflows actually
reference:

| action | lockfile had | workflow wants |
|---|---|---|
| `editorconfig-checker/action-editorconfig-checker` | `840e866d`
(v2.2.0) | `51f63319` (**v3.0.0**) |
| `actions/deploy-pages` | `cd2ce8fc` | `368f8252` (**v5.0.1**) |

`owner_id` / `repo_id` are unchanged. Both shas were verified to exist
and to carry those tags.

## Verification

Audited every non-standards `uses:` ref across `.github/workflows/`
against the lockfile — matching on **sha**, case-insensitively, and on
the **action root** for subpath actions like
`github/codeql-action/init`:

```
REAL_MISMATCHES = 0
```

(An earlier naive exact-string audit reported 10 mismatches; 8 were
false positives from subpath and letter-case differences that GitHub
itself tolerates. Only the two above are genuine.)

Edited surgically rather than via a bare `gh actions-lock` regeneration,
which is known to be destructive on this estate.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

https://claude.ai/code/session_01QMTyDv9CoJo5PfeNzyp519

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
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 major Major / load-bearing work

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant