ci: bump the actions group across 1 directory with 18 updates - #44
Merged
Merged
Conversation
Owner
|
@dependabot recreate |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 26, 2026 18:19
46f04fd to
374a649
Compare
Owner
|
@dependabot rebase |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 10:46
374a649 to
78bb1e5
Compare
Owner
|
@dependabot rebase |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 11:48
78bb1e5 to
eb3546d
Compare
Owner
|
@dependabot rebase |
1 similar comment
Owner
|
@dependabot rebase |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
2 times, most recently
from
July 27, 2026 12:08
8dc3246 to
2328290
Compare
abd-ulbasit
added a commit
that referenced
this pull request
Jul 27, 2026
go.mod pinned `go 1.24.0` while deploy/docker/Dockerfile built on golang:1.24-alpine. Those two have to move as a pair, and because they sat in separate files no single dependabot PR could move both — so every open PR was wedged: - #21/#33/#55/#56 raise go.mod to 1.25.0, and the Docker job then dies on the 1.24 builder: go: go.mod requires go >= 1.25.0 (running go 1.24.13; GOTOOLCHAIN=local) - #44 bumps actions/setup-go v5 -> v7, which exports GOTOOLCHAIN=local. With go.mod still at 1.24.0 the Security and Benchmark jobs die installing their tools: golang.org/x/vuln@v1.6.0 requires go >= 1.25.0 (running go 1.24.0) golang.org/x/perf@... requires go >= 1.25.0 (running go 1.24.0) The two PRs that would have raised the base image (#2, #22) were closed, and dependabot will not re-propose a bump it has already opened. So the deadlock could only be broken by hand, from main, in one commit. Raise both here, plus the benchmark Job manifest that runs go from the same image. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 16:16
2328290 to
8f15a05
Compare
Owner
|
@dependabot rebase |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 16:27
8f15a05 to
50486b2
Compare
Owner
|
@dependabot rebase |
dependabot
Bot
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 16:40
50486b2 to
3967457
Compare
abd-ulbasit
added a commit
that referenced
this pull request
Jul 27, 2026
Same deadlock as 42e393e, one patch level deeper, surfaced by #44. actions/setup-go v7 exports GOTOOLCHAIN=local, so every `go install ...@latest` in CI has to be satisfiable by exactly the version go.mod declares — there is no toolchain download to paper over a gap. go.mod said 1.25.0, which is enough for govulncheck and benchstat but not for gosec: gosec@latest: github.com/securego/gosec/v2@v2.28.0 requires go >= 1.25.8 (running go 1.25.0; GOTOOLCHAIN=local) So #44 could not go green on its own either. 1.25.8 is the minimum that satisfies all three tools, not the newest release — the go directive is a floor, and there is no reason to lock out 1.25.0-1.25.7 users beyond what the tooling actually needs. deploy/docker/Dockerfile needs no change: golang:1.25-alpine tracks the newest 1.25.x, currently 1.25.12. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Owner
|
@dependabot rebase |
Bumps the actions group with 18 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `7` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `d583c34f0599d37dbac4a198b9c83201be380893` | `ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `7` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) | `6` | `21` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/dependency-review-action](https://github.com/actions/dependency-review-action) | `4` | `5` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `4` | `5` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | | [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) | `6` | `7` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6` | `7` | 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/setup-go` from 5 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v7) Updates `golangci/golangci-lint-action` from d583c34f0599d37dbac4a198b9c83201be380893 to ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@d583c34...ba0d7d2) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `codecov/codecov-action` from 4 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v7) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `dawidd6/action-download-artifact` from 6 to 21 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v6...v21) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) 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 `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `actions/dependency-review-action` from 4 to 5 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](actions/dependency-review-action@v4...v5) Updates `actions/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v5...v6) Updates `actions/upload-pages-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v4...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) Updates `release-drafter/release-drafter` from 6 to 7 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@v6...v7) Updates `goreleaser/goreleaser-action` from 6 to 7 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-action@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/dependency-review-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go 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 - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: dawidd6/action-download-artifact dependency-version: '21' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: goreleaser/goreleaser-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: release-drafter/release-drafter dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
abd-ulbasit
force-pushed
the
dependabot/github_actions/actions-20d2bb4d17
branch
from
July 27, 2026 16:57
3967457 to
98aa10c
Compare
Contributor
Author
|
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry! If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request |
abd-ulbasit
added a commit
that referenced
this pull request
Jul 27, 2026
Merging #44 took release-drafter v6 -> v7 and the job went red on main: Resource not accessible by integration https://docs.github.com/rest/releases/releases#create-a-release The bump did not break it, it stopped hiding it. release-drafter creates and updates a draft GitHub Release on every push to main, which needs `contents: write`, and this workflow only ever granted `contents: read`. v6 did not fail the job when that call was rejected, so it looked fine — but `gh api repos/.../releases` shows no draft release has ever existed here. The feature has been dead since the workflow was added. Grant `contents: write` on the job rather than the workflow, so the declaration sits next to the step that needs it. Fork and Dependabot pull_request runs are handed a read-only token by GitHub regardless of what is declared here, so this does not widen what an untrusted PR can do. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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 actions group with 18 updates in the / directory:
4757d583c34f0599d37dbac4a198b9c83201be380893ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a4747346213434345667455645456767Updates
actions/checkoutfrom 4 to 7Release notes
Sourced from actions/checkout's releases.
... (truncated)
Changelog
Sourced from actions/checkout's changelog.
... (truncated)
Commits
3d3c42eprep v7.0.1 release (#2531)2880268escape values passed to --unset (#2530)12cd223trim only ascii whitespace for branch (#2521)62661c4skip running unsafe pr check if input is default (#2518)e8d4307Bump the minor-actions-dependencies group with 2 updates (#2499)631c942eslint 9 (#2474)4f1f4aeBump actions/upload-artifact from 4 to 7 (#2476)ba09753Bump actions/checkout from 6 to 7 (#2488)b9e0990Bump docker/login-action from 3.3.0 to 4.2.0 (#2479)e8cb398Bump docker/build-push-action from 6.5.0 to 7.2.0 (#2478)Updates
actions/setup-gofrom 5 to 7Release notes
Sourced from actions/setup-go's releases.
... (truncated)
Commits
b7ad1dachore(deps): bump@actions/cacheto 6.2.0 (#771)0778a10Migrate to ESM and upgrade dependencies (#763)924ae3achore: bump version to 6.5.0 in package.json and package-lock.json (#762)e91cc3bBump@actions/cacheto 5.1.0, log cache write denied (#758)4a2405echore: update@types/nodeand@typescript-eslintdependencies to latest versi...78961f6chore: update@actionsdependencies and refresh license cache (#744)4a36011docs: fix Microsoft build of Go link (#734)8f19afcfeat: add go-download-base-url input for custom Go distributions (#721)27fdb26Bump minimatch from 3.1.2 to 3.1.5 (#727)def8c39Rearrange README.md, add advanced-usage.md (#724)Updates
golangci/golangci-lint-actionfrom d583c34f0599d37dbac4a198b9c83201be380893 to ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278aCommits
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
codecov/codecov-actionfrom 4 to 7Release notes
Sourced from codecov/codecov-action's releases.
... (truncated)
Changelog
Sourced from codecov/codecov-action's changelog.
... (truncated)
Commits
fb8b358chore(release): 7.0.0 (#1957)ca0a928ci: remove Enforce License Compliance workflow (#1950)e79a696chore(release): 6.0.1 (#1949)51e6422fix: prevent template injection in run: steps (VULN-1652) (#1947)57e3a13Th/6.0.0 (#1928)f67d33dRevert "Revert "build(deps): bump actions/github-script from 7.0.1 to 8.0.0""...75cd116chore(release): 5.5.4 (#1927)87d39f4Revert "build(deps): bump actions/github-script from 7.0.1 to 8.0.0" (#1926)1af5884chore(release): bump to 5.5.3 (#1922)c143300build(deps): bump actions/github-script from 7.0.1 to 8.0.0 (#1874)Updates
github/codeql-actionfrom 3 to 4Release notes
Sourced from github/codeql-action's releases.
... (truncated)
Changelog
Sourced from github/codeql-action's changelog.
... (truncated)
Commits
da21ad6RemoveNewRemoteFileAddressesFF and default to its behaviourcf46341Merge pull request #4007 from github/mbg/use-registry-proxy-for-repo-auth7db34aeRefactor looking up proxy env vars intogetRegistryProxyConfig.8125f87Remove unusedgetApiFetch7c4a258Merge pull request #4021 from github/mergeback/v4.37.1-to-main-7188fc360297913Rebuild1226301Update changelog and version after v4.37.17188fc3Merge pull request #4020 from github/update-v4.37.1-9e7c07009c8b5f69Update changelog for v4.37.19e7c070Merge pull request #4014 from github/mbg/explicit-remote-prefixUpdates
dawidd6/action-download-artifactfrom 6 to 21Release notes
Sourced from dawidd6/action-download-artifact's releases.