From 11d85480aa7cf98da245cba431387526689aea25 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Sun, 18 Jan 2026 18:45:48 +0000 Subject: [PATCH] ci: add GitHub workflow for go.mod autoupdate - [x] Create autoupdate.yaml workflow file - [x] Configure daily schedule at 3 AM UTC - [x] Set up required permissions for contents, actions, and PRs - [x] Enable Go 1.24+ dependency updates with Git LFS support --- .github/workflows/autoupdate.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 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..d6f7e3e --- /dev/null +++ b/.github/workflows/autoupdate.yaml @@ -0,0 +1,21 @@ +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" + lfs: true + secrets: inherit