We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fb9c23 commit de167a8Copy full SHA for de167a8
.github/renovate.json
@@ -35,5 +35,8 @@
35
},
36
"env": {
37
"GOTOOLCHAIN": "go1.21.13"
38
+ },
39
+ "constraints": {
40
+ "go": "1.21"
41
}
42
.github/workflows/renovate.yaml
@@ -5,15 +5,24 @@ on:
5
- cron: "0 0 * * *"
6
workflow_dispatch:
7
8
+env:
9
+ GOVERSION: 1.21.13
10
+
11
jobs:
12
renovate:
13
name: Renovate
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
18
+ - name: Install Go ${{env.GOVERSION}}
19
+ uses: actions/setup-go@v5
20
+ with:
21
+ go-version: ${{env.GOVERSION}}
22
- name: Self-hosted Renovate
23
uses: renovatebot/[email protected]
24
+ env:
25
+ GOTOOLCHAIN: go1.21.13
26
with:
27
configurationFile: .github/renovate.json
28
token: ${{ secrets.RENOVATE_TOKEN }}
0 commit comments