-
Notifications
You must be signed in to change notification settings - Fork 10
build(deps): bump @docker/actions-toolkit from 0.57.0 to 0.61.0 #163
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
build(deps): bump @docker/actions-toolkit from 0.57.0 to 0.61.0 #163
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
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); | ||
}); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vvoland With docker/actions-toolkit#567, we now need to install regctl and undock for image source type
src/main.ts
Outdated
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', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we extract the default versions to a const on the top of the file for easier discoverability?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, updated
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
Bumps @docker/actions-toolkit from 0.57.0 to 0.61.0.
Release notes
Sourced from
@docker/actions-toolkit
's releases.Commits
ff509b0
Merge pull request #680 from crazy-max/fix-jest-itg794148e
Merge pull request #679 from docker/bot/regclient-releases-json68fd63a
fix jest config for integration testsa619d07
github: update .github/regclient-releases.json7a27075
Merge pull request #604 from crazy-max/inspect-devicesb9e1a87
Merge pull request #567 from crazy-max/docker-install-undock68633e7
Merge pull request #678 from crazy-max/pr-assign-author8a5874c
pr-assign-author workflow121f70d
Merge pull request #652 from crazy-max/buildx-history-cmdad06f2a
docker(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 rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will 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 version
will 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 dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)