Skip to content

Commit 5cba6bd

Browse files
committed
deps: bump cri-ctl to v1.28.0
1 parent c20d634 commit 5cba6bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/__tests__/download.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ describe('download module test suite', () => {
150150
// Then
151151
expect(axios).toHaveBeenCalledWith(
152152
expect.objectContaining({
153-
url: 'https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/v1.25.0',
153+
url: 'https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/v1.28.0',
154154
headers: {Authorization: 'token secret-token'}
155155
})
156156
);

src/download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const installCniPlugins = async (inputs = {}) => {
6262

6363
const installCriCtl = async (inputs = {}) => {
6464
core.info(`Downloading cri-ctl`);
65-
const tag = 'v1.25.0';
65+
const tag = 'v1.28.0';
6666
const tar = await downloadGitHubArtifact({
6767
inputs,
6868
releaseUrl: `https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/${tag}`,

0 commit comments

Comments
 (0)