forked from bradfitz/embiggen-disk
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update all dependencies #1
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/all
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
233dd37
to
bad1b63
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
bad1b63
to
c618dcb
Compare
eeda981
to
c7b5cb4
Compare
76266e9
to
9b10b70
Compare
3fef4ce
to
c9a456a
Compare
26438c8
to
51a7e13
Compare
78a340d
to
cf38530
Compare
b3de092
to
5c3a55c
Compare
abc9ccd
to
e509719
Compare
a3391e8
to
c0db26f
Compare
23eb129
to
422d786
Compare
cbde2ba
to
ac51e83
Compare
be8fc45
to
97a92a9
Compare
5508e1a
to
0238e1b
Compare
7298515
to
44a09f2
Compare
1cae0a4
to
e3abe60
Compare
a5c4117
to
3417626
Compare
3417626
to
3a032cd
Compare
3a032cd
to
dc00e4e
Compare
3cd49f5
to
3787572
Compare
c4e8a2a
to
74ede02
Compare
74ede02
to
0985cf8
Compare
0985cf8
to
0229543
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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:
v4.1.5
->v4.2.2
v4.3.2
->v4.5.0
v5.0.1
->v5.3.0
v0.0.0-20180806213625-12f9029297cf
->v0.14.0
v3.25.5
->v3.28.9
v0.0.0-20201112073958-5cba982894dd
->v0.30.0
Release Notes
actions/checkout (actions/checkout)
v4.2.2
Compare Source
url-helper.ts
now leverages well-known environment variables by @jww3 in https://github.com/actions/checkout/pull/1941isGhes
by @jww3 in https://github.com/actions/checkout/pull/1946v4.2.1
Compare Source
v4.2.0
Compare Source
v4.1.7
Compare Source
v4.1.6
Compare Source
actions/dependency-review-action (actions/dependency-review-action)
v4.5.0
Compare Source
What's Changed
New Contributors
Full Changelog: actions/dependency-review-action@v4...v4.5.0
v4.4.0
Compare Source
What's Changed
Full Changelog: actions/dependency-review-action@v4.3.5...v4.4.0
v4.3.5
Compare Source
What's Changed
New Contributors
Full Changelog: actions/dependency-review-action@v4.3.4...v4.3.5
v4.3.4
Compare Source
What's Changed
Full Changelog: actions/dependency-review-action@v4.3.3...v4.3.4
v4.3.3
: Notes for v4.3.3Compare Source
What's Changed
New Contributors
Full Changelog: actions/dependency-review-action@v4.3.2...v4.3.3
actions/setup-go (actions/setup-go)
v5.3.0
Compare Source
What's Changed
@actions/cache
to^4.0.0
by @Link- in https://github.com/actions/setup-go/pull/531New Contributors
Full Changelog: actions/setup-go@v5...v5.3.0
v5.2.0
Compare Source
What's Changed
New Contributors
Full Changelog: actions/setup-go@v5...v5.2.0
v5.1.0
Compare Source
What's Changed
This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts.
Note: This change may break previous cache keys as they will no longer be compatible with the new format.
Bug Fixes
isGhes
logic by @jww3 in https://github.com/actions/setup-go/pull/511New Contributors
Full Changelog: actions/setup-go@v5...v5.1.0
v5.0.2
Compare Source
What's Changed
Bug fixes:
Dependency updates:
New Contributors
Full Changelog: actions/setup-go@v5...v5.0.2
u-root/u-root (github.com/u-root/u-root)
v0.14.0
: - breaking u-root build system changesCompare Source
This change pulls in https://github.com/u-root/gobusybox/pull/110, in which we stop supporting module builds without a go.mod. In essence, from this point forward, the
u-root
tool will support builds exactly whengo build
andgo list
also work. https://github.com/u-root/gobusybox/pull/110 reduces a lot of maintenance burden, trivially starts supporting Go workspaces and Go module replace directives, and increases gobusybox code's readability.Multi-module builds can be done easily with standard Go methods, as described in the README. Go workspaces, vendored Go workspaces, Go modules, and vendored Go modules are all supported. Completely offline builds can easily done with vendored Go modules or workspaces.
For ease of use, the goanywhere tool was created.
goanywhere
creates a temporary directory with a Go workspace of the given commands, and then execs a binary passing along the Go command paths. Use likegoanywhere ./u-root/cmds/core/{init,gosh} ./cpu/cmds/cpud -- u-root [other u-root args]
. This approaches the easy usability ofu-root
up to this point.goanywhere
does not work with templates.goanywhere
only accepts file system paths at this time.This also fixes the issue where
binary
mode builds didn't always work in the same cases wheregbb
builds worked. Both are now always supported in the exact same circumstances.This change also pulls in https://github.com/u-root/mkuimage/pull/28, in which we support generic template YAML files named ".mkuimage.yaml" in the current working directory or any of its parents. Templates support the existing command expansions, but also support configs (invoked with
u-root -config=$config
) in which one can specify build configuration and mixed-builder (bb/binary) builds. They will be documented in a README at a later time.What's Changed
Full Changelog: u-root/u-root@v0.13.1...v0.14.0
v0.13.1
Compare Source
TL;DR
Maintenance release before the anticipated breaking change of https://github.com/u-root/u-root/pull/2923.
#2914 fixed a DHCP client forever hang introduced by #2845 in cases where the link never comes up.
cmds/boot/{systemboot,fbnetboot,localboot}
have been moved tocmds/exp/{systemboot,fbnetboot,localboot}
as they are less maintained than the remaining boot commands incmds/boot
.What's Changed
Full Changelog: u-root/u-root@v0.13.0...v0.13.1
v0.13.0
Compare Source
Summary
cmds/fwtools/flash
command! Thank you @rminnich!cmds/core/nohup
, like the regularnohup
utility ("invoke a utility immune to hangups"). Thank you @binjip978!cmds/exp/dumpmemmap
, parses and dumps every interpretation of physical memory available on the system (/proc/iomem
,/sys/firmware/memmap
,/sys/firmware/fdt
, and/sys/kernel/debug/memblock
).What's Changed
New Contributors
Full Changelog: u-root/u-root@v0.12.0...v0.13.0
v0.12.0
Compare Source
A lot has changed in ~1 year. The build system has better module support. Some improvements to the boot infrastructure. A lot of tinygo support. A better gosh shell.
What's Changed
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.