We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb9c23 commit f96bb62Copy full SHA for f96bb62
1 file changed
.github/workflows/renovate.yaml
@@ -5,13 +5,20 @@ 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/github-action@v41.0.0
24
with:
0 commit comments