From 18b95a91b896e7fa31cbe9150373fe2a07b2b67e Mon Sep 17 00:00:00 2001 From: z0x Date: Sun, 23 Mar 2025 11:14:34 -0400 Subject: [PATCH] fix(actions): migrate to forgejo runner --- .gitea/workflows/build-dist.yaml | 2 +- .gitea/workflows/update-dependencies.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-dist.yaml b/.gitea/workflows/build-dist.yaml index b75f62d..280222d 100644 --- a/.gitea/workflows/build-dist.yaml +++ b/.gitea/workflows/build-dist.yaml @@ -7,7 +7,7 @@ on: jobs: build-dist: - runs-on: ubuntu-latest + runs-on: docker steps: - name: Checkout code diff --git a/.gitea/workflows/update-dependencies.yaml b/.gitea/workflows/update-dependencies.yaml index 841961e..938126e 100644 --- a/.gitea/workflows/update-dependencies.yaml +++ b/.gitea/workflows/update-dependencies.yaml @@ -6,7 +6,7 @@ on: jobs: update-deps: - runs-on: ubuntu-latest + runs-on: docker steps: - name: Checkout code @@ -24,8 +24,8 @@ jobs: - name: Commit updates run: | - git config user.name "gitea-actions[bot]" - git config user.email "gitea-actions[bot]@git.z0x.ca" + git config user.name "actions[bot]" + git config user.email "actions[bot]@git.z0x.ca" git add . if git diff --staged --quiet; then echo "No updates avalable"