From a4051361e5d72ac2fb20aaf6b64959984763d3ca Mon Sep 17 00:00:00 2001 From: KittenTM Date: Sun, 8 Mar 2026 07:15:05 +0100 Subject: [PATCH] set default to debian --- .forgejo/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 9f00024..34f6c5f 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -6,8 +6,8 @@ on: pull_request: jobs: - lint-ubuntu: - runs-on: ubuntu-latest + lint-debian: + runs-on: debian-latest container: image: node:20-bookworm steps: @@ -21,10 +21,10 @@ jobs: - name: JS run: npx eslint . - lint-debian: - needs: lint-ubuntu + lint-ubuntu: + needs: lint-debian if: failure() - runs-on: debian-latest + runs-on: ubuntu-latest container: image: node:20-bookworm steps: