From 44e12b95e7312fc17991791ddea31df677961100 Mon Sep 17 00:00:00 2001 From: Pieter Hoppenbrouwers Date: Mon, 6 Jul 2026 16:50:49 +0200 Subject: [PATCH 1/2] Migrate Github Actions to Hetzner --- .github/workflows/lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1a313ec..e3ba766 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: hetzner steps: - uses: actions/checkout@v4 @@ -12,7 +12,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - cache: yarn + - name: Enable Corepack + run: corepack enable - name: yarn run: | yarn From 56a4290697fe5eef16f8018255882147d974e7bb Mon Sep 17 00:00:00 2001 From: Pieter Hoppenbrouwers Date: Mon, 6 Jul 2026 20:51:17 +0200 Subject: [PATCH 2/2] Do not use Hetzner --- .github/workflows/lint.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e3ba766..1a313ec 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ on: [push] jobs: build: - runs-on: hetzner + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -12,8 +12,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - - name: Enable Corepack - run: corepack enable + cache: yarn - name: yarn run: | yarn