Skip to content
Open
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
9 changes: 6 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,15 @@ jobs:

test:
name: Tests
runs-on: ubuntu-latest
needs: supportedVersions

strategy:
matrix:
go_version: ${{ fromJSON(needs.supportedVersions.outputs.supported_versions) }}
os: [ubuntu-latest, macos-latest, windows-latest] # Matrix for OS

runs-on: ${{ matrix.os }}
needs: supportedVersions



steps:
- name: Checkout code
Expand Down
45 changes: 45 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"baseBranches": ["main", "release-1.20"],
"schedule": ["before 9am on Monday"],
"packageRules": [
{
"matchBaseBranches": ["release-1.20"],
"packagePatterns": ["*"],
"enabled": false
},
// Pin Go at the current version, since we want to upgrade it manually.
// Remember to keep this in sync when upgrading our Go version!
{
"matchDatasources": ["docker", "golang-version"],
"matchPackageNames": ["go", "golang"],
"allowedVersions": "<=1.22.5"
},
{
"matchManagers": ["gomod"],
"matchPaths": ["dagger/go.mod"],
"schedule": ["every month"],
"postUpdateOptions": ["gomodTidy1.17"]
},
{
"matchManagers": ["github-actions"],
"schedule": ["every month"],
"packagePatterns": ["*"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "pr",
"requiredStatusChecks": ["*"]
}
],
"branchPrefix": "deps-update/",
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security-update"]
},
"osvVulnerabilityAlerts": true
}
Loading