From c6f8a8a2ba0f2dcde86ed7ae98718de8b953313c Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Thu, 29 Feb 2024 16:30:20 +0100 Subject: [PATCH] ci: bump default docker version --- .github/workflows/ci.yml | 4 ++-- __tests__/context.test.ts | 8 ++++---- action.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4877c12..498b171 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: pull_request: env: - DOCKER_VERSION: v23.0.6 + DOCKER_VERSION: v24.0.9 jobs: main: @@ -67,7 +67,7 @@ jobs: name: Set up Docker uses: ./ with: - version: v23.0.0-rc.4 + version: v24.0.0-rc.4 channel: test - name: Dump context diff --git a/__tests__/context.test.ts b/__tests__/context.test.ts index 187bfbd..439e050 100644 --- a/__tests__/context.test.ts +++ b/__tests__/context.test.ts @@ -17,10 +17,10 @@ describe('getInputs', () => { [ 0, new Map([ - ['version', 'v23.0.1'], + ['version', 'v24.0.8'], ]), { - version: 'v23.0.1', + version: 'v24.0.8', channel: '', context: '', daemonConfig: '', @@ -29,13 +29,13 @@ describe('getInputs', () => { [ 1, new Map([ - ['version', 'v23.0.0-rc.4'], + ['version', 'v24.0.0-rc.4'], ['channel', 'test'], ['context', 'foo'], ['daemon-config', `{"debug":true,"features":{"containerd-snapshotter":true}}`], ]), { - version: 'v23.0.0-rc.4', + version: 'v24.0.0-rc.4', channel: 'test', context: 'foo', daemonConfig: `{"debug":true,"features":{"containerd-snapshotter":true}}`, diff --git a/action.yml b/action.yml index b5224c9..5282f26 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ branding: inputs: version: - description: 'Docker CE version. (e.g, v23.0.1)' + description: 'Docker CE version. (e.g, v24.0.9)' required: false default: 'latest' channel: