Skip to content

Commit

Permalink
deps: bump cri-ctl to v1.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Apr 6, 2023
1 parent 972a3d5 commit 91f04b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/download.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe('download module test suite', () => {
// Then
expect(axios).toHaveBeenCalledWith(
expect.objectContaining({
url: 'https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/v1.25.0',
url: 'https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/v1.26.1',
headers: {Authorization: 'token secret-token'}
})
);
Expand Down
2 changes: 1 addition & 1 deletion src/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const installCniPlugins = async (inputs = {}) => {

const installCriCtl = async (inputs = {}) => {
core.info(`Downloading cri-ctl`);
const tag = 'v1.25.0';
const tag = 'v1.26.1';
const tar = await downloadGitHubArtifact({
inputs,
releaseUrl: `https://api.github.com/repos/kubernetes-sigs/cri-tools/releases/tags/${tag}`,
Expand Down

0 comments on commit 91f04b9

Please sign in to comment.