From 6e76c0cdc34a912a790dc282ed8edeb0370fdcb1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 00:17:58 +0000 Subject: [PATCH 1/3] chore(deps): update dependency ubuntu to v24 --- .github/workflows/chaos.yaml | 2 +- .github/workflows/ci.yaml | 4 ++-- .github/workflows/lint-pr-title.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/chaos.yaml b/.github/workflows/chaos.yaml index 62ffb8a..0bd0e8e 100644 --- a/.github/workflows/chaos.yaml +++ b/.github/workflows/chaos.yaml @@ -12,7 +12,7 @@ permissions: read-all jobs: chaos-testing: name: chaos testing - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3a2f91c..41e871c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: - build permissions: @@ -109,7 +109,7 @@ jobs: iter8-test: name: run iter8 tests - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: ${{ github.event_name == 'pull_request' }} needs: - build diff --git a/.github/workflows/lint-pr-title.yaml b/.github/workflows/lint-pr-title.yaml index dac8af3..3f3f43d 100644 --- a/.github/workflows/lint-pr-title.yaml +++ b/.github/workflows/lint-pr-title.yaml @@ -12,7 +12,7 @@ permissions: read-all jobs: check-pr-title: name: Validate PR title - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: pull-requests: write steps: From be35c504ea83ae4caf214a0d2f79f3e7110a101a Mon Sep 17 00:00:00 2001 From: chgl Date: Fri, 4 Oct 2024 20:50:24 +0200 Subject: [PATCH 2/3] fix --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 41e871c..85f54cc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,6 +42,7 @@ jobs: - name: Set up containerd image store shell: bash run: | + [ -f /etc/docker/daemon.json ] || echo "{}" | sudo tee /etc/docker/daemon.json jq '. | .+{"features": {"containerd-snapshotter": true}}' /etc/docker/daemon.json > /tmp/docker-daemon-with-containerd.json sudo mv /tmp/docker-daemon-with-containerd.json /etc/docker/daemon.json cat /etc/docker/daemon.json From e58618c8fbe9ad1efa0799888e1a4494334bb464 Mon Sep 17 00:00:00 2001 From: chgl Date: Sun, 20 Oct 2024 12:51:02 +0200 Subject: [PATCH 3/3] containerd --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 85f54cc..5e3ef44 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -123,6 +123,7 @@ jobs: - name: Set up containerd image store shell: bash run: | + [ -f /etc/docker/daemon.json ] || echo "{}" | sudo tee /etc/docker/daemon.json jq '. | .+{"features": {"containerd-snapshotter": true}}' /etc/docker/daemon.json > /tmp/docker-daemon-with-containerd.json sudo mv /tmp/docker-daemon-with-containerd.json /etc/docker/daemon.json cat /etc/docker/daemon.json