diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 9fc98d8..feb2c0e 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,58 +1,77 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended", - "helpers:pinGitHubActionDigests", - ":semanticCommits" + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + 'helpers:pinGitHubActionDigests', + ':semanticCommits', ], - "rebaseWhen": "conflicted", - "prConcurrentLimit": 5, - "baseBranches": ["main"], - "labels": ["automated"], - "packageRules": [ + rebaseWhen: 'conflicted', + prConcurrentLimit: 5, + baseBranches: [ + 'main', + ], + labels: [ + 'automated', + ], + packageRules: [ { - "matchFiles": [".github/**"], - "groupName": "github-actions dependencies" + matchFileNames: [ + '.github/**', + ], + groupName: 'github-actions dependencies', }, { - "matchFiles": ["crossplane.yaml"], - "groupName": "crossplane dependencies" + matchFileNames: [ + 'crossplane.yaml', + ], + groupName: 'crossplane dependencies', }, { - "matchFiles": ["Makefile"], - "groupName": "Makefile dependencies" - } + matchFileNames: [ + 'Makefile', + ], + groupName: 'Makefile dependencies', + }, ], - "customManagers": [ + customManagers: [ { - "customType": "regex", - "description": "Bump up version in the Makefile", - "fileMatch": ["^Makefile$"], - "matchStrings": [ - "UP_VERSION = (?.*?)\\n" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "upbound/up" + customType: 'regex', + description: 'Bump up version in the Makefile', + fileMatch: [ + '^Makefile$', + ], + matchStrings: [ + 'UP_VERSION = (?.*?)\\n', + ], + datasourceTemplate: 'github-releases', + depNameTemplate: 'upbound/up', }, { - "customType": "regex", - "description": "Bump uptest version in the Makefile", - "fileMatch": ["^Makefile$"], - "matchStrings": [ - "UPTEST_VERSION = (?.*?)\\n" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "upbound/uptest" + customType: 'regex', + description: 'Bump uptest version in the Makefile', + fileMatch: [ + '^Makefile$', + ], + matchStrings: [ + 'UPTEST_VERSION = (?.*?)\\n', + ], + datasourceTemplate: 'github-releases', + depNameTemplate: 'upbound/uptest', }, { - "customType": "regex", - "description": "Bump providers/functions/configurations in crossplane.yaml", - "fileMatch": ["crossplane.yaml"], - "matchStrings": [ - "#\\s*renovate:\\s*datasource=(?[^\\s]+)\\s+depName=(?[^\\s]+)\\s*\\n\\s*version:\\s*\"(?[^\"]+)\"" - ], - "datasourceTemplate": "{{{datasource}}}", - "depNameTemplate": "{{{depName}}}" - } - ] + customType: 'regex', + description: 'Bump providers/functions/configurations in crossplane.yaml', + fileMatch: [ + 'crossplane.yaml', + ], + matchStrings: [ + '#\\s*renovate:\\s*datasource=(?[^\\s]+)\\s+depName=(?[^\\s]+)\\s*\\n\\s*version:\\s*"(?[^"]+)"', + ], + datasourceTemplate: '{{{datasource}}}', + depNameTemplate: '{{{depName}}}', + }, + ], + "git-submodules": { + "enabled": true + } } diff --git a/.gitmodules b/.gitmodules index c2fad47..394e1ee 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "build"] path = build - url = https://github.com/upbound/build + url = https://github.com/crossplane/build.git diff --git a/Makefile b/Makefile index 2ca84a0..5597e56 100644 --- a/Makefile +++ b/Makefile @@ -117,11 +117,11 @@ PLATFORMS ?= linux_amd64 # Tool Versions # ------------------ -UP_VERSION = v0.34.0 +UP_VERSION = v0.35.0 UP_CHANNEL = stable -CROSSPLANE_CLI_VERSION = v1.17.1 -CROSSPLANE_VERSION = v1.17.1-up.1 -UPTEST_VERSION = v1.1.2 +CROSSPLANE_CLI_VERSION = v1.18.0 +CROSSPLANE_VERSION = v1.18.0-up.1 +UPTEST_VERSION = v1.2.0 # Crossplane Configuration # ------------------