diff --git a/.github/workflows/build_publish_builder_image.yaml b/.github/workflows/build_publish_builder_image.yaml index e2ccb5b..aa38c32 100644 --- a/.github/workflows/build_publish_builder_image.yaml +++ b/.github/workflows/build_publish_builder_image.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - go-version: [1.23.12, 1.24.6] + go-version: [1.24.6, 1.25.0] ubuntu-version: [16.04] steps: diff --git a/renovate.json b/renovate.json index 1b554c8..7087854 100644 --- a/renovate.json +++ b/renovate.json @@ -8,30 +8,30 @@ "customType": "regex", "fileMatch": ["^\\.github/workflows/build_publish_builder_image\\.yaml$"], "matchStrings": [ - "go-version:\\s*\\[\\s*(?1\\.23\\.\\d+),\\s*(?1\\.24\\.\\d+)\\s*\\]" + "go-version:\\s*\\[\\s*(?1\\.24\\.\\d+),\\s*(?1\\.25\\.\\d+)\\s*\\]" ], "datasourceTemplate": "golang-version", - "depNameTemplate": "golang-1.23", + "depNameTemplate": "golang-1.24", "currentValueTemplate": "{{{currentValue1}}}", - "extractVersionTemplate": "(?1\\.23\\.\\d+)" + "extractVersionTemplate": "(?1\\.24\\.\\d+)" }, { "customType": "regex", "fileMatch": ["^\\.github/workflows/build_publish_builder_image\\.yaml$"], "matchStrings": [ - "go-version:\\s*\\[\\s*(?1\\.23\\.\\d+),\\s*(?1\\.24\\.\\d+)\\s*\\]" + "go-version:\\s*\\[\\s*(?1\\.24\\.\\d+),\\s*(?1\\.25\\.\\d+)\\s*\\]" ], "datasourceTemplate": "golang-version", - "depNameTemplate": "golang-1.24", + "depNameTemplate": "golang-1.25", "currentValueTemplate": "{{{currentValue2}}}", - "extractVersionTemplate": "(?1\\.24\\.\\d+)" + "extractVersionTemplate": "(?1\\.25\\.\\d+)" } ], "packageRules": [ { - "description": "Automerge patch updates for Go versions 1.23.x and 1.24.x", + "description": "Automerge patch updates for Go versions 1.24.x and 1.25.x", "matchDatasources": ["golang-version"], - "matchPackageNames": ["golang-1.23", "golang-1.24"], + "matchPackageNames": ["golang-1.24", "golang-1.25"], "matchUpdateTypes": ["patch"], "automerge": true, "automergeType":"pr",