chore(deps): Update all non-major dependencies - #107
Merged
Conversation
Dependency ReviewThe following issues were found:
License Issuesrequirements.txt
OpenSSF Scorecard
Scanned Files
|
renovate
Bot
force-pushed
the
renovate/all-non-major
branch
3 times, most recently
from
August 18, 2026 02:13
c72f085 to
4417019
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major
branch
from
August 18, 2026 06:06
4417019 to
621c1d0
Compare
sbaerlocher
approved these changes
Aug 18, 2026
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.
This PR contains the following updates:
==2.25.0→==2.26.02026-08-14→2026-08-162026-08-18(+1)3a9d2dd→4fad2343a9d2dd→4fad234Release Notes
ansible-community/antsibull-docs (antsibull-docs)
v2.26.0Compare Source
Release Summary
Maintenance release.
Minor Changes
arillso/.github (arillso/.github)
v2026-08-16Compare Source
Fixed
security-code.yml derives the Go toolchain from
go.modinstead of ahardcoded default. The
go-versioninput defaulted to1.25, which silentlyapplied to every consumer that omitted it, and the only way to avoid it was to
repeat the version as a literal —
arillso/go.ansiblecarried exactly that,with a comment asking the next reader to keep it in sync with
go.modby hand.That sync point is what let the Go 1.26.5 stdlib advisories (GO-2026-5026,
-5942, -5972, -6088, -6089, -6090, -6091, -6218) sit unnoticed in the CodeQL
job.
go-versionnow defaults to empty and a newgo-version-fileinput(default
go.mod) takes over, mirroring howsecurity-deps.ymlhas alwaysresolved its toolchain. Consumers that pass an explicit
go-versionkeep it;the input still wins when set. When neither applies — no
go-versionand nogo-version-fileon disk — the job falls back tostablerather than failingin
Setup Go, so a Go repository whose module does not sit at the workspaceroot still runs.
security-deps.ymlguards the same way.security-code.yml, security-config.yml, security-sbom.yml,
ci-ansible-molecule.yml and release-go.yml give their
concurrencygroup a static per-workflow discriminator. Inside a
workflow_callreusablegithub.workflowandgithub.refresolve to the caller, so a bare${{ github.workflow }}-${{ github.ref }}group is byte-identical to thegroup the calling workflow declares for itself. With
cancel-in-progressdefaulting to
truethe job was dropped at scheduling time — no job record,no annotation, no log, just a run reporting
failurewhile every job it didcreate is green. The nightly security scans of
arillso/go.ansibleandarillso/action.playbooklost their CodeQL job this way from 2026-08-12, theday they moved from
security-codeql.ymltosecurity-code.yml.security-secrets.ymlandci-go.ymlalready carried this fix; these fivedid not. Consumers pick it up with the next preset tag.
renovate-ansible.json gives the
Molecule platform imagescustomManageran
autoReplaceStringTemplate, so thepinDigestsrule that sits next to itcan actually pin. Renovate's field-wise rewrite path only rewrites tokens the
matched line already holds: pinning a bare
:latestleavescurrentValueunchanged and has no
currentDigestto swap, so the line came backbyte-identical,
confirmIfDepUpdatedfound no digest, and the branch wasdiscarded with
Error updating branch: update failure— all eight moleculepins in
arillso/ansible.agentfailed this way. A template is the only paththat can add a token, and it reproduces the whole match (
image:prefix andtrailing newline included) because
replaceAtswaps the match as a unit; thematchStringsregex is unchanged. The digest slot is guarded by{{#if newDigest}}so a plain tag update does not emit a bare@. One knownceiling: the template writes the value unquoted with a single space after
image:, so a quoted value would lose its quotes — still valid YAML, and nomolecule scenario in the consuming repositories uses that form. Consumers pick
the fix up when the preset tag they extend moves forward.
Added
renovate-molecule-managerjob backed byscripts/tests/test-renovate-molecule-manager.sh. The check is a round triprather than a string comparison: the unpinned
image:line has to match themanager's regex, the rendered template has to match that same regex again, and
the digest has to come back out of it — which is exactly the re-extraction
confirmIfDepUpdatedperforms and exactly the step that failed. Regex andtemplate are read out of the JSON with
jqinstead of restated, so the guardcannot drift away from the preset it guards. Without it the manager stays in a
JSON no CI parses, and a template lost to a later edit would first surface as
a failing Renovate run on a downstream repository.
v2026-08-15Compare Source
Configuration
📅 Schedule: (in timezone Europe/Zurich)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.