File tree 2 files changed +46
-2
lines changed
2 files changed +46
-2
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : Dependabot
3
+
4
+ on :
5
+ pull_request :
6
+
7
+ permissions :
8
+ contents : write
9
+
10
+ jobs :
11
+ update-deps :
12
+ name : Update deps
13
+ runs-on : ubuntu-latest
14
+ if : ${{ github.actor == 'dependabot[bot]' }}
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v4
18
+ with :
19
+ ref : ${{ github.head_ref }}
20
+ path : ./src/github.com/${{ github.repository }}
21
+ fetch-depth : 0
22
+
23
+ - name : Setup Golang
24
+ uses : openshift-knative/hack/actions/setup-go@main
25
+
26
+ - name : Install yq
27
+ run : |
28
+ go install github.com/mikefarah/yq/v3@latest
29
+
30
+ - name : Generate files
31
+ working-directory : ./src/github.com/${{ github.repository }}
32
+ run : make generate-release
33
+
34
+ - name : git push
35
+ working-directory : ./src/github.com/${{ github.repository }}
36
+ run : |
37
+ if ! git diff --exit-code --quiet
38
+ then
39
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
40
+ git config --local user.name "github-actions[bot]"
41
+ git add .
42
+ git commit -m "Run make generate-release"
43
+ git push
44
+ fi
Original file line number Diff line number Diff line change @@ -468,9 +468,9 @@ spec:
468
468
taskRef :
469
469
params :
470
470
- name : name
471
- value : sast-shell -check-oci-ta
471
+ value : sast-unicode -check-oci-ta
472
472
- name : bundle
473
- value : quay.io/konflux-ci/tekton-catalog/task-sast-shell -check-oci-ta:0.1@sha256:7553ec6925d0586b286502669b8e31a39dc73501f657426bac99019ac598d6ab
473
+ value : quay.io/konflux-ci/tekton-catalog/task-sast-unicode -check-oci-ta:0.1@sha256:3a128580c41abdac5bd76d0d1e066f2f3473278ba9fab90639878a27ced7a0e6
474
474
- name : kind
475
475
value : task
476
476
resolver : bundles
You can’t perform that action at this time.
0 commit comments