Commit 52a2e64
authored
Update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 [SECURITY] (#772)
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
|
[github.com/go-git/go-git/v6](https://redirect.github.com/go-git/go-git)
| `v6.0.0-alpha.4` → `v6.0.0-alpha.5` |

|

|
---
### go-git: Worktree operations may follow symlinks
[CVE-2026-71556](https://nvd.nist.gov/vuln/detail/CVE-2026-71556) /
[GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm)
<details>
<summary>More information</summary>
#### Details
##### Impact
A symlink traversal issue in `go-git` could allow worktree operations to
modify files outside the intended worktree path.
The `worktreeFilesystem` wrapper rejected dangerous path strings,
including paths containing `.git`, parent-directory components, or
control characters. However, it did not prevent filesystem operations
from following symbolic links that were already present in the worktree.
As a result, a path that is safe when evaluated as a string could still
resolve into the repository's Git metadata directory. For example, if
`s` is a symbolic link to `.git`, writing to `s/config` would modify
`.git/config`.
A symbolic link at the final path component could also be followed. For
example, if `s` points directly to `.git/config`, opening `s` for
writing with truncation could overwrite the repository configuration.
Exploitation requires an attacker to be able to introduce or control a
symbolic link in the worktree and cause the application to perform a
write through that path.
Applications using `storage/memory` for their Storer, or
`go-billy/memfs` for their `Worktree`, are not affected by this
vulnerability.
##### Patches
The issue has been addressed by making the worktree filesystem wrapper a
symlink-safe boundary.
Worktree operations now reject paths where an existing symbolic link in
any path component could cause the operation to escape the intended
worktree location, including symbolic links at the final component.
Users of filesystem-backed worktrees should upgrade to a patched
version.
##### Credits
Thanks to @​kodareef5 for reporting this issue and working with
the go-git security team toward its resolution. 🥇
We would also like to thank @​HughLewis20, who independently
reported the same issue while a fix was already in progress.
#### Severity
- CVSS Score: 7.1 / 10 (High)
- Vector String: `CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:L`
#### References
-
[https://github.com/go-git/go-git/security/advisories/GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/go-git/go-git/security/advisories/GHSA-hc8v-wwc9-vgxm)
-
[https://github.com/go-git/go-git/commit/008a78f2dd86f52544ddff8b8e8ddeecdf3f7aab](https://redirect.github.com/go-git/go-git/commit/008a78f2dd86f52544ddff8b8e8ddeecdf3f7aab)
-
[https://github.com/go-git/go-git/commit/661d1c7f101d34e002a3cfcf8dbea5b7421d07ac](https://redirect.github.com/go-git/go-git/commit/661d1c7f101d34e002a3cfcf8dbea5b7421d07ac)
-
[https://github.com/go-git/go-git/releases/tag/v5.19.2](https://redirect.github.com/go-git/go-git/releases/tag/v5.19.2)
-
[https://github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5)
-
[https://github.com/advisories/GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm)
This data is provided by the [GitHub Advisory
Database](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm)
([CC-BY
4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)).
</details>
---
### go-git: Malicious reference names may modify files outside the
reference storage
[CVE-2026-71557](https://nvd.nist.gov/vuln/detail/CVE-2026-71557) /
[GHSA-qgq7-7hm3-q39j](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j)
<details>
<summary>More information</summary>
#### Details
##### Impact
A path traversal issue in `go-git` could allow malicious reference names
to access files outside the repository's intended reference storage.
Loose references are stored under `.git/<reference-name>`. The reference
name was previously used as a path without verifying that the resolved
path remained within the reference storage. A name such as
`refs/heads/../../config` could therefore resolve to unrelated
repository metadata such as `.git/config` or `.git/HEAD`.
A malicious Git server could advertise such a reference name. The name
may also survive refspec mapping; for example, it could be mapped to
`refs/remotes/origin/../../config` during a clone or fetch operation.
This vulnerability affects filesystem-backed repositories using the
`storage/filesystem` package and its `dotgit` reference storage. Users
relying exclusively on the in-memory storage implementation,
`storage/memory`, are not affected, because reference names are not
resolved as filesystem paths.
Exploitation requires an application using `go-git` with
filesystem-backed storage to interact with a malicious Git server or
otherwise process attacker-controlled reference names.
##### Patches
The issue has been addressed by validating reference names at the
`dotgit` storage entry points and rejecting names whose resolved paths
could escape the reference storage.
Users of filesystem-backed storage should upgrade to a patched version.
##### Workarounds
Applications that exclusively use `storage/memory` are not affected and
do not require a workaround for this vulnerability.
For applications using filesystem-backed storage, avoid cloning from or
fetching from untrusted Git servers until an upgrade is possible.
Applications that directly construct or process reference names may also
validate them before passing them to filesystem-backed `go-git` storage.
Application-level validation should only be considered a temporary
mitigation and does not replace upgrading to a patched version.
##### References
- Fixes:
-
[https://github.com/go-git/go-git/pull/2247](https://redirect.github.com/go-git/go-git/pull/2247)
-
[https://github.com/go-git/go-git/pull/2254](https://redirect.github.com/go-git/go-git/pull/2254)
##### Credits
Thanks to @​Saku0512 for reporting this issue and
@​Sahana2524 for proposing the initial fix. 🙇
#### Severity
- CVSS Score: 6.3 / 10 (Medium)
- Vector String: `CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:L`
#### References
-
[https://github.com/go-git/go-git/security/advisories/GHSA-qgq7-7hm3-q39j](https://redirect.github.com/go-git/go-git/security/advisories/GHSA-qgq7-7hm3-q39j)
-
[https://github.com/go-git/go-git/pull/2247](https://redirect.github.com/go-git/go-git/pull/2247)
-
[https://github.com/go-git/go-git/pull/2254](https://redirect.github.com/go-git/go-git/pull/2254)
-
[https://github.com/go-git/go-git/commit/4a0e66d555de5f9a30c31e2df64f445f42bd01e7](https://redirect.github.com/go-git/go-git/commit/4a0e66d555de5f9a30c31e2df64f445f42bd01e7)
-
[https://github.com/go-git/go-git/commit/da9f7d8a0e98b475600177348d6ece384a370f36](https://redirect.github.com/go-git/go-git/commit/da9f7d8a0e98b475600177348d6ece384a370f36)
-
[https://github.com/go-git/go-git/releases/tag/v5.19.2](https://redirect.github.com/go-git/go-git/releases/tag/v5.19.2)
-
[https://github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5)
-
[https://github.com/advisories/GHSA-qgq7-7hm3-q39j](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j)
This data is provided by the [GitHub Advisory
Database](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j)
([CC-BY
4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)).
</details>
---
### Release Notes
<details>
<summary>go-git/go-git (github.com/go-git/go-git/v6)</summary>
###
[`v6.0.0-alpha.5`](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5)
[Compare
Source](https://redirect.github.com/go-git/go-git/compare/v6.0.0-alpha.4...v6.0.0-alpha.5)
#### What's Changed
- plumbing: format/packfile, allow injecting a custom ObjectSelector by
[@​Soph](https://redirect.github.com/Soph) in
[#​2142](https://redirect.github.com/go-git/go-git/pull/2142)
- storage: pool .pack file descriptors via internal/packhandle by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2132](https://redirect.github.com/go-git/go-git/pull/2132)
- build: Update module golang.org/x/crypto to v0.52.0 \[SECURITY] (main)
by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2148](https://redirect.github.com/go-git/go-git/pull/2148)
- build: Update module golang.org/x/net to v0.55.0 \[SECURITY] (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2151](https://redirect.github.com/go-git/go-git/pull/2151)
- plumbing, storage: add CloseIdleDescriptors soft-close primitive by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2133](https://redirect.github.com/go-git/go-git/pull/2133)
- \*: harden format parsers against unbounded loops by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2162](https://redirect.github.com/go-git/go-git/pull/2162)
- storage: pack read optimisations and storage-wide LRU FD pool by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2134](https://redirect.github.com/go-git/go-git/pull/2134)
- plumbing: format/packfile, fix delta-base parsing bugs by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2163](https://redirect.github.com/go-git/go-git/pull/2163)
- git: worktree, hoist Config() calls out of per-file loops by
[@​cedric-appdirect](https://redirect.github.com/cedric-appdirect)
in [#​1990](https://redirect.github.com/go-git/go-git/pull/1990)
- storage: filesystem, pool FSObject reads via PackHandle by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2154](https://redirect.github.com/go-git/go-git/pull/2154)
- plumbing: format/index, accept empty trailing checksum on decode by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2181](https://redirect.github.com/go-git/go-git/pull/2181)
- build: Update golang (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2182](https://redirect.github.com/go-git/go-git/pull/2182)
- build: Update module golang.org/x/net to v0.56.0 (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2191](https://redirect.github.com/go-git/go-git/pull/2191)
- \*: speed up multi-pack reads via Index fanout probes by
[@​hiddeco](https://redirect.github.com/hiddeco) in
[#​2147](https://redirect.github.com/go-git/go-git/pull/2147)
- Fix URL insteadOf to use longest match when multiple values exist by
[@​AriehSchneier](https://redirect.github.com/AriehSchneier) in
[#​2189](https://redirect.github.com/go-git/go-git/pull/2189)
- transport/http, backend, utils/ioutil: fix HTTP data races on the
fetch and serve paths by
[@​georg](https://redirect.github.com/georg) in
[#​2128](https://redirect.github.com/go-git/go-git/pull/2128)
- plumbing: protocol/packp, handle shallow-only no-op push in
UpdateRequests.Decode by
[@​yuzhuo](https://redirect.github.com/yuzhuo) in
[#​2172](https://redirect.github.com/go-git/go-git/pull/2172)
- git: signer, add context.Context to Sign by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2202](https://redirect.github.com/go-git/go-git/pull/2202)
- plumbing: transport/http, Expose typed auth error for Azure DevOps
/\_signin redirects by
[@​jfjrh2014](https://redirect.github.com/jfjrh2014) in
[#​2201](https://redirect.github.com/go-git/go-git/pull/2201)
- plumbing: format, faster diff patch generation by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2186](https://redirect.github.com/go-git/go-git/pull/2186)
- plumbing: transport, Protocol v2 for upload-pack by
[@​blmayer](https://redirect.github.com/blmayer) in
[#​2188](https://redirect.github.com/go-git/go-git/pull/2188)
- plumbing: pktline, use Scanner for decoding by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2038](https://redirect.github.com/go-git/go-git/pull/2038)
- internal: server/git, Fix TestGitServer\_Timeout flakiness on Windows
CI by [@​aymanbagabas](https://redirect.github.com/aymanbagabas)
in [#​2129](https://redirect.github.com/go-git/go-git/pull/2129)
- plumbing: packp, validate push options to prevent invalid characters
by [@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2057](https://redirect.github.com/go-git/go-git/pull/2057)
- plumbing: packp/capability, Zero-value-safe types and capability
cleanup (1/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2206](https://redirect.github.com/go-git/go-git/pull/2206)
- plumbing: object, skip path validation in tree diff walk by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2222](https://redirect.github.com/go-git/go-git/pull/2222)
- plumbing: packp/transport, Slice-based AdvRefs and v1 handling (2/11)
by [@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2225](https://redirect.github.com/go-git/go-git/pull/2225)
- plumbing: transport, Add options and result struct to GetRemoteRefs
(3/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2226](https://redirect.github.com/go-git/go-git/pull/2226)
- git: Expose AlternatesFS on PlainOpenOptions by
[@​andrew](https://redirect.github.com/andrew) in
[#​2101](https://redirect.github.com/go-git/go-git/pull/2101)
- plumbing: packp, Protocol v2 wire types with caller-owned packfile
streaming (4/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2227](https://redirect.github.com/go-git/go-git/pull/2227)
- plumbing/transport: receive\_pack, add ReceivePackHooks with
PreReceive/PostReceive by
[@​andrew](https://redirect.github.com/andrew) in
[#​2236](https://redirect.github.com/go-git/go-git/pull/2236)
- plumbing: transport, Protocol v2 session handshake and Command (5/11)
by [@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2228](https://redirect.github.com/go-git/go-git/pull/2228)
- plumbing: transport, ls-refs over Protocol v2 for GetRemoteRefs (6/11)
by [@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2229](https://redirect.github.com/go-git/go-git/pull/2229)
- plumbing: transport, fetch over Protocol v2 with caller-owned packfile
(7/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2230](https://redirect.github.com/go-git/go-git/pull/2230)
- plumbing: transport, Wire Protocol v2 across HTTP and share the client
core (8/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2231](https://redirect.github.com/go-git/go-git/pull/2231)
- plumbing: transport, Refactor server-side Protocol v2 onto packp types
(9/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2232](https://redirect.github.com/go-git/go-git/pull/2232)
- plumbing: transport, git archive over HTTP (10/11) by
[@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2233](https://redirect.github.com/go-git/go-git/pull/2233)
- plumbing: transport, Run the upload-pack suite across v0/v1/v2 (11/11)
by [@​aymanbagabas](https://redirect.github.com/aymanbagabas) in
[#​2234](https://redirect.github.com/go-git/go-git/pull/2234)
- plumbing: optimize Tree.Decode with ReadSlice and io.ReadFull by
[@​Bluebugs](https://redirect.github.com/Bluebugs) in
[#​1736](https://redirect.github.com/go-git/go-git/pull/1736)
- plumbing: object, Isolate tests from host git config. by
[@​cedric-appdirect](https://redirect.github.com/cedric-appdirect)
in [#​2122](https://redirect.github.com/go-git/go-git/pull/2122)
- plumbing: default to wire protocol v2 and close client/server
conformance gaps by [@​pjbgf](https://redirect.github.com/pjbgf)
in [#​2237](https://redirect.github.com/go-git/go-git/pull/2237)
- build: Update module golang.org/x/text to v0.39.0 (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2241](https://redirect.github.com/go-git/go-git/pull/2241)
- build: Update golang (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2246](https://redirect.github.com/go-git/go-git/pull/2246)
- plumbing: object, include submodules in patches by
[@​upuddu](https://redirect.github.com/upuddu) in
[#​2243](https://redirect.github.com/go-git/go-git/pull/2243)
- storage: dotgit, reject path traversal in reference names by
[@​Sahana2524](https://redirect.github.com/Sahana2524) in
[#​2247](https://redirect.github.com/go-git/go-git/pull/2247)
- plumbing: transport/http, redact credentials in error messages by
[@​Sahana2524](https://redirect.github.com/Sahana2524) in
[#​2252](https://redirect.github.com/go-git/go-git/pull/2252)
- git: worktree, checkout reuse a single os.Root per reset. by
[@​cedric-appdirect](https://redirect.github.com/cedric-appdirect)
in [#​2259](https://redirect.github.com/go-git/go-git/pull/2259)
- git: Worktree: Add stores index entires with backslashes on Windows by
[@​joshblum](https://redirect.github.com/joshblum) in
[#​2253](https://redirect.github.com/go-git/go-git/pull/2253)
- storage: dotgit, align reference-name safety with refname\_is\_safe by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2257](https://redirect.github.com/go-git/go-git/pull/2257)
- git: fetch, refuse to clobber existing tags by
[@​Sahana2524](https://redirect.github.com/Sahana2524) in
[#​2250](https://redirect.github.com/go-git/go-git/pull/2250)
- internal: v2, skip closeReader on a cancelled context by
[@​georg](https://redirect.github.com/georg) in
[#​2269](https://redirect.github.com/go-git/go-git/pull/2269)
- git: include shallow references in object walker by
[@​erka](https://redirect.github.com/erka) in
[#​1792](https://redirect.github.com/go-git/go-git/pull/1792)
- plumbing: protocol/packp, reject control bytes in daemon request by
[@​Sahana2524](https://redirect.github.com/Sahana2524) in
[#​2263](https://redirect.github.com/go-git/go-git/pull/2263)
- plumbing: protocol/packp, compare zero object ids by value in Action
by [@​Sahana2524](https://redirect.github.com/Sahana2524) in
[#​2264](https://redirect.github.com/go-git/go-git/pull/2264)
- plumbing: gitignore, Clarify pattern and matcher parameters by
[@​ahmojo](https://redirect.github.com/ahmojo) in
[#​2248](https://redirect.github.com/go-git/go-git/pull/2248)
- storage: filesystem, Make ObjectStorage a pointer field by
[@​AriehSchneier](https://redirect.github.com/AriehSchneier) in
[#​2118](https://redirect.github.com/go-git/go-git/pull/2118)
- plumbing: format/index, sort entries by Name and Stage by
[@​wacky6](https://redirect.github.com/wacky6) in
[#​2158](https://redirect.github.com/go-git/go-git/pull/2158)
- Fix CodeQL warnings by
[@​AriehSchneier](https://redirect.github.com/AriehSchneier) in
[#​2126](https://redirect.github.com/go-git/go-git/pull/2126)
- git: worktree, fix RemoveGlob on root-level files by
[@​NoahStarkenburg](https://redirect.github.com/NoahStarkenburg)
in [#​2219](https://redirect.github.com/go-git/go-git/pull/2219)
- internal: revision, fix resolution for tags containing @​ and /
by [@​tmchow](https://redirect.github.com/tmchow) in
[#​1957](https://redirect.github.com/go-git/go-git/pull/1957)
- git: submodule, skip .gitmodules entries missing from the index by
[@​gecube](https://redirect.github.com/gecube) in
[#​2256](https://redirect.github.com/go-git/go-git/pull/2256)
- build: Update module github.com/go-git/go-billy/v6 to v6.0.0-alpha.2
(main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2270](https://redirect.github.com/go-git/go-git/pull/2270)
- build: re-enable go-billy renovate updates on `v5.x` by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2272](https://redirect.github.com/go-git/go-git/pull/2272)
- build: Update github-actions (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2273](https://redirect.github.com/go-git/go-git/pull/2273)
- build: Update github-actions to v7 (main) (major) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2274](https://redirect.github.com/go-git/go-git/pull/2274)
- plumbing: format/gitignore, fix trailing \*\* matching unrelated paths
by [@​glitch-ux](https://redirect.github.com/glitch-ux) in
[#​2279](https://redirect.github.com/go-git/go-git/pull/2279)
- build: Update github-actions (main) by
[@​go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot]
in [#​2280](https://redirect.github.com/go-git/go-git/pull/2280)
- git: worktree, make the filesystem wrapper a symlink-safe boundary by
[@​pjbgf](https://redirect.github.com/pjbgf) in
[#​2276](https://redirect.github.com/go-git/go-git/pull/2276)
#### New Contributors
- [@​jfjrh2014](https://redirect.github.com/jfjrh2014) made their
first contribution in
[#​2201](https://redirect.github.com/go-git/go-git/pull/2201)
- [@​upuddu](https://redirect.github.com/upuddu) made their first
contribution in
[#​2243](https://redirect.github.com/go-git/go-git/pull/2243)
- [@​Sahana2524](https://redirect.github.com/Sahana2524) made
their first contribution in
[#​2247](https://redirect.github.com/go-git/go-git/pull/2247)
- [@​erka](https://redirect.github.com/erka) made their first
contribution in
[#​1792](https://redirect.github.com/go-git/go-git/pull/1792)
- [@​ahmojo](https://redirect.github.com/ahmojo) made their first
contribution in
[#​2248](https://redirect.github.com/go-git/go-git/pull/2248)
- [@​wacky6](https://redirect.github.com/wacky6) made their first
contribution in
[#​2158](https://redirect.github.com/go-git/go-git/pull/2158)
- [@​NoahStarkenburg](https://redirect.github.com/NoahStarkenburg)
made their first contribution in
[#​2219](https://redirect.github.com/go-git/go-git/pull/2219)
- [@​gecube](https://redirect.github.com/gecube) made their first
contribution in
[#​2256](https://redirect.github.com/go-git/go-git/pull/2256)
- [@​glitch-ux](https://redirect.github.com/glitch-ux) made their
first contribution in
[#​2279](https://redirect.github.com/go-git/go-git/pull/2279)
**Full Changelog**:
<go-git/go-git@v6.0.0-alpha.4...v6.0.0-alpha.5>
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- At any time (no schedule defined)
- Automerge
- Monday through Friday (`* * * * 1-5`)
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI1OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJpbXBhY3Qvbm8tY2hhbmdlbG9nLXJlcXVpcmVkIl19-->
Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>1 parent a5aea54 commit 52a2e64
2 files changed
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | | - | |
92 | | - | |
| 91 | + | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
182 | 182 | | |
183 | 183 | | |
184 | 184 | | |
185 | | - | |
186 | | - | |
| 185 | + | |
| 186 | + | |
187 | 187 | | |
188 | 188 | | |
189 | | - | |
190 | | - | |
| 189 | + | |
| 190 | + | |
191 | 191 | | |
192 | 192 | | |
193 | 193 | | |
| |||
0 commit comments