Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/homebrew-packages-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ runs:
INPUT_CACHE_MODE: ${{ inputs.cache-mode }}
INPUT_DOWNLOADS_HASH_FROM_PREPARE: ${{ inputs.downloads-hash-from-prepare }}
# Major versions of GCC and LLVM to use
# renovate: datasource=repology depName=gcc packageName=homebrew/gcc extractVersion=^(?<version>\d+)\.\d+\.\d+$
# renovate: datasource=custom.homebrew depName=gcc extractVersion=^(?<version>\d+)\.\d+\.\d+$
GCC_MAJOR_VERSION: 15
# renovate: datasource=repology depName=llvm packageName=homebrew/llvm extractVersion=^(?<version>\d+)\.\d+\.\d+$
# renovate: datasource=custom.homebrew depName=llvm extractVersion=^(?<version>\d+)\.\d+\.\d+$
LLVM_MAJOR_VERSION: 22
run: |
# Initialize action
Expand Down
10 changes: 10 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@
conan: {
enabled: true,
},
customDatasources: {
// Tracks the version Homebrew ships (not upstream releases, which land
// before Homebrew bottles exist), via https://formulae.brew.sh.
homebrew: {
defaultRegistryUrlTemplate: "https://formulae.brew.sh/api/formula/{{packageName}}.json",
transformTemplates: [
'{"releases": [{"version": versions.stable}], "homepage": homepage, "sourceUrl": urls.stable.url}',
],
},
},
"git-submodules": {
enabled: true,
},
Expand Down
Loading