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
6 changes: 0 additions & 6 deletions .github/dependabot.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/dependabot.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: 'Set up Go'
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: 1.25
go-version: 1.26
- name: 'Checkout'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Get Dependencies'
Expand All @@ -39,6 +39,7 @@ jobs:
go:
- '1.24'
- '1.25'
- '1.26'
fail-fast: false
steps:
- name: 'Harden Runner'
Expand Down
35 changes: 31 additions & 4 deletions .renovaterc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"constraints": {
"go": "1.25"
"go": "1.26"
},
"extends": [
"config:recommended",
Expand All @@ -14,10 +14,37 @@
":semanticPrefixFixDepsChoreOthers"
],
"enabledManagers": [
"gomod"
"gomod",
"github-actions"
],
"postUpdateOptions": [
"gomodTidy",
"gomodMassage"
"gomodTidy"
],
"branchPrefix": "renovate-",
"rebaseWhen": "conflicted",
"prConcurrentLimit": 10,
"prHourlyLimit": 100,
"labels": [
"dependencies"
],
"packageRules": [
{
"matchDatasources": [
"go"
],
"addLabels": [
"go"
]
},
{
"matchUpdateTypes": [
"digest",
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Use `go get` to add this module to your project with `go get github.com/go-crypt

### Requirements

- go 1.23+
- go 1.24+

## Usage

Expand Down
Loading