From e860979dce3d653c46dca1176c42d26df2cfb82d Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 10 Apr 2026 23:31:58 +0200 Subject: [PATCH 1/7] Run on `ubuntu-slim` --- .github/workflows/desktop-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/desktop-lint.yml b/.github/workflows/desktop-lint.yml index 433f302a5..fe7be0287 100644 --- a/.github/workflows/desktop-lint.yml +++ b/.github/workflows/desktop-lint.yml @@ -20,13 +20,13 @@ on: jobs: format: - runs-on: ubuntu-22.04 + runs-on: ubuntu-slim steps: - name: Checkout uses: actions/checkout@v6 with: - fetch-depth: 20 # should be enough to find merge base + fetch-depth: 20 # should be enough to find merge base - name: Install dependencies shell: bash From 65dc57b4ab8a51e5ffad7a34e8f3e525c3745580 Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 10 Apr 2026 23:32:57 +0200 Subject: [PATCH 2/7] Run on `ubuntu-slim` --- .github/workflows/web-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index 8a90325e7..ecc6d14d1 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -10,7 +10,7 @@ on: jobs: ESLint: - runs-on: ubuntu-latest + runs-on: ubuntu-slim defaults: run: From fde2cbae6905ab8648e5d4b2d5d379ceba86c516 Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 10 Apr 2026 23:33:26 +0200 Subject: [PATCH 3/7] Update translations-push.yml --- .github/workflows/translations-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml index 777e9e6ac..fc47ebd66 100644 --- a/.github/workflows/translations-push.yml +++ b/.github/workflows/translations-push.yml @@ -16,7 +16,7 @@ jobs: if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice' name: Push strings - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout repo From 6f31d9b6bfbd9d0bde10ac1b47f90f8340895e30 Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 10 Apr 2026 23:33:53 +0200 Subject: [PATCH 4/7] Run on `ubuntu-slim` --- .github/workflows/translations-pull.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translations-pull.yml b/.github/workflows/translations-pull.yml index ed61e3b19..ca9069192 100644 --- a/.github/workflows/translations-pull.yml +++ b/.github/workflows/translations-pull.yml @@ -16,7 +16,7 @@ jobs: if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice' name: Pull languages - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout repo From bf382042e332c3bb10ef913ffcd86e917ecfd588 Mon Sep 17 00:00:00 2001 From: tooomm Date: Wed, 15 Apr 2026 07:22:43 +0200 Subject: [PATCH 5/7] Use new composite/binary version of action --- .github/workflows/translations-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml index fc47ebd66..e926a58ed 100644 --- a/.github/workflows/translations-push.yml +++ b/.github/workflows/translations-push.yml @@ -46,7 +46,7 @@ jobs: - name: Render template id: template - uses: chuhlomin/render-template@v1 + uses: chuhlomin/render-template/binary@v1 with: template: .ci/update_translation_source_strings_template.md vars: | From 880a78f2c5b7ae6e0cf8f165e65989e3c9572091 Mon Sep 17 00:00:00 2001 From: tooomm Date: Fri, 10 Apr 2026 23:31:58 +0200 Subject: [PATCH 6/7] Run on `ubuntu-slim` --- .github/workflows/desktop-lint.yml | 4 ++-- .github/workflows/translations-pull.yml | 2 +- .github/workflows/translations-push.yml | 2 +- .github/workflows/web-lint.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/desktop-lint.yml b/.github/workflows/desktop-lint.yml index 433f302a5..fe7be0287 100644 --- a/.github/workflows/desktop-lint.yml +++ b/.github/workflows/desktop-lint.yml @@ -20,13 +20,13 @@ on: jobs: format: - runs-on: ubuntu-22.04 + runs-on: ubuntu-slim steps: - name: Checkout uses: actions/checkout@v6 with: - fetch-depth: 20 # should be enough to find merge base + fetch-depth: 20 # should be enough to find merge base - name: Install dependencies shell: bash diff --git a/.github/workflows/translations-pull.yml b/.github/workflows/translations-pull.yml index ed61e3b19..ca9069192 100644 --- a/.github/workflows/translations-pull.yml +++ b/.github/workflows/translations-pull.yml @@ -16,7 +16,7 @@ jobs: if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice' name: Pull languages - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout repo diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml index 777e9e6ac..fc47ebd66 100644 --- a/.github/workflows/translations-push.yml +++ b/.github/workflows/translations-push.yml @@ -16,7 +16,7 @@ jobs: if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice' name: Push strings - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout repo diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index 8a90325e7..ecc6d14d1 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -10,7 +10,7 @@ on: jobs: ESLint: - runs-on: ubuntu-latest + runs-on: ubuntu-slim defaults: run: From 100ef89bd4d859ce50b6510bbd4ffc30505554aa Mon Sep 17 00:00:00 2001 From: tooomm Date: Wed, 15 Apr 2026 07:22:43 +0200 Subject: [PATCH 7/7] Use new composite/binary version of action --- .github/workflows/translations-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml index fc47ebd66..e926a58ed 100644 --- a/.github/workflows/translations-push.yml +++ b/.github/workflows/translations-push.yml @@ -46,7 +46,7 @@ jobs: - name: Render template id: template - uses: chuhlomin/render-template@v1 + uses: chuhlomin/render-template/binary@v1 with: template: .ci/update_translation_source_strings_template.md vars: |