-
Notifications
You must be signed in to change notification settings - Fork 9
fix: bump apm to 0.30.0 and opencode to 1.18.31 + add renovate… #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
61811a5
chore(deps): bump apm to 0.30.0 and opencode to 1.18.31, add renovate…
FScholPer 0efa2f7
chore: add renovate workflow for scheduled dependency updates
FScholPer 4647a27
chore: improve renovate config to work with daily workflow
FScholPer a846be3
chore: rename to daily workflow following cicd-workflows pattern
FScholPer fb1191a
chore: use shared cicd-workflows daily maintenance with renovate
FScholPer 958ac97
fix: add token to renovate action
FScholPer 312d1cc
chore: use org RENOVATE_TOKEN secret
FScholPer fef4a62
chore: format daily.yml with yamlfmt
FScholPer fe9c1f7
fix: add required permissions for renovate job to create PRs and issues
FScholPer ec566c7
chore(deps): update apm and opencode versions in s-core-local version…
FScholPer 0300ae3
chore: add renovate managers for versions.yaml to detect apm and open…
FScholPer d594a8c
fix comments
FScholPer a122713
moved to merge queue
FScholPer a3d8eed
remove triggers
FScholPer 5b0a2f2
wire daily workflow into CI workflow
lurtz 6417570
fix workflow permissions
lurtz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| // ******************************************************************************* | ||
| // Copyright (c) 2026 Contributors to the Eclipse Foundation | ||
| // | ||
| // See the NOTICE file(s) distributed with this work for additional | ||
| // information regarding copyright ownership. | ||
| // | ||
| // This program and the accompanying materials are made available under the | ||
| // terms of the Apache License Version 2.0 which is available at | ||
| // https://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| // ******************************************************************************* | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": [ | ||
| "config:base", | ||
| ":dependencyDashboard", | ||
| ":semanticCommits" | ||
| ], | ||
| "timezone": "UTC", | ||
| "schedule": [ | ||
| "at any time" | ||
| ], | ||
| "lockFileMaintenance": { | ||
| "enabled": true, | ||
| "schedule": [ | ||
| "at any time" | ||
| ] | ||
| }, | ||
| "semanticCommits": "enabled", | ||
| "commitMessagePrefix": "chore(deps):", | ||
| "prConcurrentLimit": 5, | ||
| "prCreation": "auto", | ||
| "automerge": false, | ||
| "customManagers": [ | ||
| { | ||
| "customType": "regex", | ||
| "fileMatch": [ | ||
| "^tools/lockfiles/apm\\.lock\\.json$" | ||
| ], | ||
| "matchStrings": [ | ||
| "\"version\":\\s*\"(?<currentValue>[^\"]+)\"", | ||
| "\"url\":\\s*\"https://github\\.com/microsoft/apm/releases/download/v(?<currentValue>[^/]+)/[^\"]+\",\\s*\"sha256\":\\s*\"(?<currentDigest>[^\"]+)\"" | ||
| ], | ||
| "datasourceTemplate": "github-releases", | ||
| "depNameTemplate": "microsoft/apm", | ||
| "versioningTemplate": "semver" | ||
| }, | ||
| { | ||
| "customType": "regex", | ||
| "fileMatch": [ | ||
| "^tools/lockfiles/opencode\\.lock\\.json$" | ||
| ], | ||
| "matchStrings": [ | ||
| "\"version\":\\s*\"(?<currentValue>[^\"]+)\"", | ||
| "\"url\":\\s*\"https://github\\.com/anomalyco/opencode/releases/download/v(?<currentValue>[^/]+)/[^\"]+\",\\s*\"sha256\":\\s*\"(?<currentDigest>[^\"]+)\"" | ||
| ], | ||
| "datasourceTemplate": "github-releases", | ||
| "depNameTemplate": "anomalyco/opencode", | ||
| "versioningTemplate": "semver" | ||
| }, | ||
| { | ||
| "customType": "regex", | ||
| "fileMatch": [ | ||
| "versions\\.yaml$" | ||
| ], | ||
| "matchStrings": [ | ||
| "apm:\\n\\s+version:\\s+(?<currentValue>\\d+\\.\\d+\\.\\d+)" | ||
| ], | ||
| "datasourceTemplate": "github-releases", | ||
| "depNameTemplate": "microsoft/apm", | ||
| "versioningTemplate": "semver" | ||
| }, | ||
| { | ||
| "customType": "regex", | ||
| "fileMatch": [ | ||
| "versions\\.yaml$" | ||
| ], | ||
| "matchStrings": [ | ||
| "opencode:\\n\\s+version:\\s+(?<currentValue>\\d+\\.\\d+\\.\\d+)" | ||
| ], | ||
| "datasourceTemplate": "github-releases", | ||
| "depNameTemplate": "anomalyco/opencode", | ||
| "versioningTemplate": "semver" | ||
| } | ||
| ], | ||
| "enabledManagers": [ | ||
| "custom.regex" | ||
| ], | ||
| "ignoreDeps": [], | ||
| "labels": [ | ||
| "type:dependencies" | ||
| ], | ||
| "reviewers": [ | ||
| "team:maintainers" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| # ******************************************************************************* | ||
| # Copyright (c) 2026 Contributors to the Eclipse Foundation | ||
| # | ||
| # See the NOTICE file(s) distributed with this work for additional | ||
| # information regarding copyright ownership. | ||
| # | ||
| # This program and the accompanying materials are made available under the | ||
| # terms of the Apache License Version 2.0 which is available at | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # ******************************************************************************* | ||
| name: Daily Maintenance | ||
| permissions: | ||
| contents: write | ||
| issues: write | ||
| pull-requests: write | ||
| on: | ||
| # Runs every day at midnight UTC | ||
| schedule: | ||
| - cron: '0 0 * * *' | ||
| # Manually trigger the workflow from the GitHub UI | ||
| workflow_dispatch: {} | ||
| workflow_call: | ||
| jobs: | ||
| maintenance: | ||
| uses: eclipse-score/cicd-workflows/.github/workflows/daily.yml@8d80e8df150cae21d53cbc8031d0f970648f7a67 # v0.0.3 | ||
| permissions: | ||
| contents: write | ||
| issues: write | ||
| pull-requests: write | ||
| pages: write | ||
| id-token: write | ||
| actions: write | ||
| renovate: | ||
|
Copilot marked this conversation as resolved.
|
||
| runs-on: ubuntu-latest | ||
| if: ${{ github.event_name == 'schedule' }} | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - name: Checkout config file | ||
| uses: actions/checkout@v7 | ||
| - name: Run renovate | ||
| uses: renovatebot/github-action@5402b206248e5a8c8427a15102702eb9c1793efc # v46.2.4 | ||
| with: | ||
| # Pull requests from forks do not have access to secrets | ||
| token: ${{ secrets.RENOVATE_TOKEN }} | ||
| configurationFile: .github/renovate.json5 | ||
| env: | ||
| LOG_LEVEL: debug | ||
| validate-renovate-config: | ||
| name: Validate Renovate config | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - name: Checkout config file | ||
| uses: actions/checkout@v7 | ||
| - name: Validate Renovate config | ||
| run: npx --yes --package renovate renovate-config-validator .github/renovate.json5 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.