Skip to content

Commit 691c759

Browse files
authored
ci: update renovate.json; disable setup-go cache (#77)
* ci: update renovate.json; disable setup-go cache Signed-off-by: Tyler Gillson <[email protected]> * ci: fix step order in gosec action Signed-off-by: Tyler Gillson <[email protected]> --------- Signed-off-by: Tyler Gillson <[email protected]>
1 parent a438000 commit 691c759

File tree

4 files changed

+30
-8
lines changed

4 files changed

+30
-8
lines changed

.github/workflows/bulwark-golicenses.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ concurrency:
1111
jobs:
1212
golicense-pr-scan:
1313
runs-on: [self-hosted, Linux, X64, validator]
14+
container:
15+
image: gcr.io/spectro-images-public/golang:1.22-alpine
1416
steps:
15-
- name: install-git
16-
run: sudo apt-get install -y git
17-
1817
- name: checkout
1918
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
2019

2120
- name: Set up Go
2221
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
2322
with:
23+
cache: false
2424
go-version-file: go.mod
2525

2626
- name: install-golicenses
27-
run: go install github.com/google/go-licenses@v1.0.0
27+
run: go install github.com/google/go-licenses@latest
2828

2929
- name: golicense-scan
3030
run: |

.github/workflows/bulwark-gosec.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ jobs:
1717
env:
1818
REPO: ${{ github.event.repository.name }}
1919
steps:
20+
- name: checkout
21+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
22+
2023
- name: Set up Go
2124
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
2225
with:
23-
go-version: '1.21'
24-
25-
- name: checkout
26-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
26+
cache: false
27+
go-version-file: go.mod
2728

2829
- name: run-gosec-scan
2930
shell: sh

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
2323
with:
24+
cache: false
2425
go-version-file: go.mod
2526

2627
- name: Test

renovate.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"gomodMassage"
1212
],
1313
"packageRules": [
14+
{
15+
"matchUpdateTypes": ["pin", "pinDigest", "digest"],
16+
"addLabels": ["pin"],
17+
"automerge": true
18+
},
1419
{
1520
"matchUpdateTypes": ["minor", "patch"],
1621
"matchCurrentVersion": "!/^0/",
@@ -26,10 +31,25 @@
2631
"addLabels": ["github_actions"],
2732
"automerge": true
2833
},
34+
{
35+
"matchManagers": ["crossplane"],
36+
"addLabels": ["crossplane"],
37+
"automerge": true
38+
},
2939
{
3040
"matchManagers": ["dockerfile"],
3141
"addLabels": ["docker"],
3242
"automerge": true
43+
},
44+
{
45+
"matchManagers": ["kustomize"],
46+
"addLabels": ["kustomize"],
47+
"automerge": true
48+
},
49+
{
50+
"matchManagers": ["helm-values"],
51+
"addLabels": ["helm_values"],
52+
"automerge": true
3353
}
3454
],
3555
"regexManagers": [

0 commit comments

Comments
 (0)