ci: bump default docker version

This commit is contained in:
CrazyMax 2024-02-29 16:30:20 +01:00
parent 2960188cea
commit c6f8a8a2ba
No known key found for this signature in database
GPG Key ID: ADE44D8C9D44FBE4
3 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -17,10 +17,10 @@ describe('getInputs', () => {
[
0,
new Map<string, string>([
['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<string, string>([
['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}}`,

View File

@ -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: