From 62b0c0f97b07827b67ce171043cd75e85242c521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Mon, 29 Jul 2024 09:56:20 +0200 Subject: [PATCH] fix(ci): lix:latest does not exist, use lix:2.90 --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8bc8a58..3934b1d 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,7 +14,7 @@ jobs: check: runs-on: ubuntu-latest container: - image: ghcr.io/lix-project/lix:latest + image: ghcr.io/lix-project/lix:2.90 steps: - uses: actions/checkout@v4 - name: Enable flakes @@ -27,7 +27,7 @@ jobs: lockfile: runs-on: ubuntu-latest container: - image: ghcr.io/lix-project/lix:latest + image: ghcr.io/lix-project/lix:2.90 needs: check if: ${{ github.event_name == 'schedule' }} # only run when scheduled steps: @@ -40,7 +40,7 @@ jobs: build-documentation: runs-on: ubuntu-latest container: - image: ghcr.io/lix-project/lix:latest + image: ghcr.io/lix-project/lix:2.90 if: ${{ github.event_name != 'schedule' }} # only run when not scheduled steps: - uses: actions/checkout@v4 -- 2.47.0