diff --git a/.gitea/workflows/weekly.yaml b/.gitea/workflows/weekly.yaml index 0a1582f..9ff465e 100644 --- a/.gitea/workflows/weekly.yaml +++ b/.gitea/workflows/weekly.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Go uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 with: - go-version: "1.26.3" + go-version-file: 'go.mod' - name: Install yq run: | sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq @@ -29,7 +29,7 @@ jobs: id: version_check run: | NEW_VERSION=$(yq -r '.info.version' openapi.yaml) - if [ -f openapi_spec.yaml ]; then + if [ -f openapi_spec.yaml ]; then OLD_VERSION=$(yq -r '.info.version' openapi_spec.yaml) else OLD_VERSION="0.0.0" diff --git a/go.mod b/go.mod index 1ff7afc..6fa8b69 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module gitea.t000-n.de/t.behrendt/ionosDnsClient -go 1.24.0 +go 1.26.3 require github.com/oapi-codegen/runtime v1.4.2 diff --git a/renovate.json b/renovate.json index 9e28a36..8565cd3 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "local>t.behrendt/renovate-configs:common", - "local>t.behrendt/renovate-configs:action" + "local>t.behrendt/renovate-configs:action", + "local>t.behrendt/renovate-configs:golang" ] }