From eabda02acbf358ff231c90bbd521afe7c0322de1 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Sat, 7 Mar 2026 18:57:43 +0000 Subject: [PATCH] Add daily go.mod autoupdate workflow --- .github/workflows/autoupdate.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/autoupdate.yaml diff --git a/.github/workflows/autoupdate.yaml b/.github/workflows/autoupdate.yaml new file mode 100644 index 0000000..af1e3b0 --- /dev/null +++ b/.github/workflows/autoupdate.yaml @@ -0,0 +1,20 @@ +name: Autoupdate go.mod and go.sum + +on: + workflow_dispatch: + schedule: + - cron: "0 3 * * *" + +permissions: + contents: write + actions: write + pull-requests: write + security-events: write + +jobs: + autoupdate: + uses: lukaszraczylo/shared-actions/.github/workflows/go-autoupdate.yaml@main + with: + go-version: ">=1.24" + release-workflow: "release.yaml" + secrets: inherit