mirror of
https://github.com/lukaszraczylo/kubemirror.git
synced 2026-06-05 22:43:51 +00:00
b555d84d32
k8s.io/api v0.36.0 requires Go 1.26.0; autoupdate has been failing since 2026-04-23 because setup-go's cached 1.25.9 fell behind.
21 lines
393 B
YAML
21 lines
393 B
YAML
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.26"
|
|
release-workflow: "release.yaml"
|
|
secrets: inherit
|