aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/actions-runner-update.yml4
-rw-r--r--.github/workflows/dependabot.yml4
-rw-r--r--.github/workflows/go-generate.yml7
3 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/actions-runner-update.yml b/.github/workflows/actions-runner-update.yml
index dec9272..8cf5635 100644
--- a/.github/workflows/actions-runner-update.yml
+++ b/.github/workflows/actions-runner-update.yml
@@ -1,8 +1,8 @@
name: Regenerate actions-runner image
on:
- push:
- branches: [ "master" ]
+ # push:
+ # branches: [ "master" ]
schedule:
- cron: "0 0 1,8,15,22 * *"
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
index d760bf0..5544e98 100644
--- a/.github/workflows/dependabot.yml
+++ b/.github/workflows/dependabot.yml
@@ -10,8 +10,8 @@ permissions:
jobs:
run-custom-command:
- if: ${{ github.actor_id == '49699333' }}
- runs-on: ubuntu-latest
+ if: ${{ github.actor_id == '49699333' }} # Dependabot
+ runs-on: alrest-x
steps:
- uses: actions/checkout@v3
with:
diff --git a/.github/workflows/go-generate.yml b/.github/workflows/go-generate.yml
index 348ed2e..df77414 100644
--- a/.github/workflows/go-generate.yml
+++ b/.github/workflows/go-generate.yml
@@ -10,10 +10,15 @@ permissions:
jobs:
regenerate:
- runs-on: ubuntu-22.04
+ runs-on: alrest-x
steps:
- name: Clone code
uses: actions/checkout@v4
+
+ - name: build essential
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y build-essential
- uses: Homebrew/actions/setup-homebrew@master