From b6e2715de80bdb6462eb4fb1fc3311275f146476 Mon Sep 17 00:00:00 2001 From: Romain Broussard Date: Tue, 5 May 2026 08:57:31 +0200 Subject: [PATCH 1/3] fix: upgrade setup-go to node24 base layer Updated CI configuration to use mirakl-hosted runners and upgraded Go setup action. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c2ccea..c0d1200 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,10 @@ on: jobs: lint: name: lint - runs-on: ubuntu-latest + runs-on: mirakl-hosted steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v6 with: go-version: '1.22' id: go @@ -30,10 +30,10 @@ jobs: build: name: test - runs-on: ubuntu-latest + runs-on: mirakl-hosted steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v6 with: go-version: '1.22' id: go From b21f8f349a4a74f140e352c73fc6e5c903077faf Mon Sep 17 00:00:00 2001 From: Romain Broussard Date: Tue, 5 May 2026 09:13:08 +0200 Subject: [PATCH 2/3] chore: Change CI runner to ubuntu-latest as this repo is public Updated CI workflow to use 'ubuntu-latest' instead of 'mirakl-hosted'. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0d1200..be51c83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: lint: name: lint - runs-on: mirakl-hosted + runs-on: ubuntu-latest steps: - name: Set up Go uses: actions/setup-go@v6 @@ -30,7 +30,7 @@ jobs: build: name: test - runs-on: mirakl-hosted + runs-on: ubuntu-latest steps: - name: Set up Go uses: actions/setup-go@v6 From ce059f48e92f9287c6b54d600eb2eb995ffedeaa Mon Sep 17 00:00:00 2001 From: Romain Broussard Date: Tue, 5 May 2026 09:19:11 +0200 Subject: [PATCH 3/3] Update Go version in CI workflow to 1.25 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be51c83..f04cd53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v6 with: - go-version: '1.22' + go-version: '1.25' id: go - name: Check out code into the Go module directory @@ -35,7 +35,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v6 with: - go-version: '1.22' + go-version: '1.25' id: go - name: Check out code into the Go module directory