Conversation
Bumps [@docker/actions-toolkit](https://github.com/docker/actions-toolkit) from 0.57.0 to 0.61.0. - [Release notes](https://github.com/docker/actions-toolkit/releases) - [Commits](docker/actions-toolkit@v0.57.0...v0.61.0) --- updated-dependencies: - dependency-name: "@docker/actions-toolkit" dependency-version: 0.61.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
8c0dcd0 to
b560fcd
Compare
crazy-max
reviewed
Apr 24, 2025
Comment on lines
26
to
50
| if (input.source.type === 'image') { | ||
| await core.group(`Download and install regctl`, async () => { | ||
| const regclientInstall = new RegclientInstall(); | ||
| const regclientBinPath = await regclientInstall.download( | ||
| process.env.REGCTL_VERSION && process.env.REGCTL_VERSION.trim() ? process.env.REGCTL_VERSION : 'v0.8.3', | ||
| true | ||
| ); | ||
| await regclientInstall.install(regclientBinPath); | ||
| }); | ||
| await core.group(`Download and install undock`, async () => { | ||
| const undockInstall = new UndockInstall(); | ||
| const undockBinPath = await undockInstall.download( | ||
| process.env.UNDOCK_VERSION && process.env.UNDOCK_VERSION.trim() ? process.env.UNDOCK_VERSION : 'v0.10.0', | ||
| true | ||
| ); | ||
| await undockInstall.install(undockBinPath); | ||
| }); | ||
| } |
Member
There was a problem hiding this comment.
@vvoland With docker/actions-toolkit#567, we now need to install regctl and undock for image source type
vvoland
reviewed
Apr 25, 2025
src/main.ts
Outdated
Comment on lines
30
to
38
| process.env.REGCTL_VERSION && process.env.REGCTL_VERSION.trim() ? process.env.REGCTL_VERSION : 'v0.8.3', | ||
| true | ||
| ); | ||
| await regclientInstall.install(regclientBinPath); | ||
| }); | ||
| await core.group(`Download and install undock`, async () => { | ||
| const undockInstall = new UndockInstall(); | ||
| const undockBinPath = await undockInstall.download( | ||
| process.env.UNDOCK_VERSION && process.env.UNDOCK_VERSION.trim() ? process.env.UNDOCK_VERSION : 'v0.10.0', |
Contributor
There was a problem hiding this comment.
Can we extract the default versions to a const on the top of the file for easier discoverability?
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
b560fcd to
1211ebf
Compare
vvoland
approved these changes
May 12, 2025
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 @docker/actions-toolkit from 0.57.0 to 0.61.0.
Release notes
Sourced from
@docker/actions-toolkit's releases.Commits
ff509b0Merge pull request #680 from crazy-max/fix-jest-itg794148eMerge pull request #679 from docker/bot/regclient-releases-json68fd63afix jest config for integration testsa619d07github: update .github/regclient-releases.json7a27075Merge pull request #604 from crazy-max/inspect-devicesb9e1a87Merge pull request #567 from crazy-max/docker-install-undock68633e7Merge pull request #678 from crazy-max/pr-assign-author8a5874cpr-assign-author workflow121f70dMerge pull request #652 from crazy-max/buildx-history-cmdad06f2adocker(install): use undock to extract imageDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)