From 0d4523d33d5e09832a1cc46de912fca528678bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20BUISSON?= Date: Tue, 21 Apr 2026 10:50:04 +0200 Subject: [PATCH 1/2] feat(ci): :rocket: migrate to namespace --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 38c9030..4ff91f7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ env: jobs: lint: - runs-on: 'shipfox-2vcpu-ubuntu-2404' + runs-on: 'ubuntu-latest' if: ${{ github.event_name == 'pull_request' && !github.event.pull_request.draft }} env: # renovate: datasource=github-tags depName=golangci/golangci-lint versioning=loose @@ -44,7 +44,7 @@ jobs: version: ${{ env.GOLANGCI_LINT_VERSION }} test: - runs-on: 'shipfox-2vcpu-ubuntu-2404' + runs-on: 'ubuntu-latest' if: ${{ github.event_name == 'pull_request' && !github.event.pull_request.draft }} steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 @@ -62,7 +62,7 @@ jobs: include: - arch: amd64 - arch: arm64 - runs-on: ${{ matrix.arch == 'amd64' && 'shipfox-2vcpu-ubuntu-2404' || 'shipfox-2vcpu-ubuntu-2404-arm' }} + runs-on: ${{ matrix.arch == 'amd64' && 'ubuntu-latest' || 'ubuntu-24.04-arm' }} if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} permissions: contents: read From c12c1e59c780c6e328f91987ad3b8008ee8d2107 Mon Sep 17 00:00:00 2001 From: Michel Loiseleur <97035654+mloiseleur@users.noreply.github.com> Date: Tue, 21 Apr 2026 14:59:45 +0200 Subject: [PATCH 2/2] Apply suggestion from @mloiseleur --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4ff91f7..fd848a8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -108,7 +108,7 @@ jobs: push-manifest: if: ${{ github.event_name == 'push' || startsWith(github.ref, 'refs/tags/') }} - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-slim' needs: [ build ] permissions: contents: read