From 9204291519a8405d042810667fdddf009b6b467a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Mon, 4 Nov 2024 14:26:56 +0100 Subject: [PATCH] fix: typo in containerd integration (#2873) --- .github/workflows/docker-moby-latest.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-moby-latest.yml b/.github/workflows/docker-moby-latest.yml index 6c11df2af2..a5902d1fe3 100644 --- a/.github/workflows/docker-moby-latest.yml +++ b/.github/workflows/docker-moby-latest.yml @@ -14,7 +14,7 @@ jobs: # ghaction-setup-docker doesn't work with rootless yet exclude: - rootless-docker: true - container-integration: true + containerd-integration: true name: "Core tests using latest moby/moby" runs-on: 'ubuntu-latest' @@ -23,6 +23,7 @@ jobs: - name: Set the Docker Install type run: | echo "docker_install_type=${{ matrix.rootless-docker == true && 'Rootless' || 'Rootful' }}" >> "$GITHUB_ENV" + echo "containerd_integration=${{ matrix.containerd-integration == true && 'containerd' || '' }}" >> "$GITHUB_ENV" - name: Setup rootless Docker if: ${{ matrix.rootless-docker }} @@ -77,6 +78,7 @@ jobs: { "tc_project": "testcontainers-go", "tc_docker_install_type": "${docker_install_type}", + "tc_containerd_integration": "${containerd_integration}", "tc_github_action_url": "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}/attempts/${GITHUB_RUN_ATTEMPT}", "tc_github_action_status": "FAILED", "tc_slack_channel_id": "${{ secrets.SLACK_DOCKER_LATEST_CHANNEL_ID }}"