Skip to content

Commit 1a30d06

Browse files
authored
Merge branch 'main' into report-yaml-error-properly-as-comment
2 parents a38ec46 + f88c6ed commit 1a30d06

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.github/workflows/container.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ jobs:
4545
elif [[ ${{ github.ref }} == refs/pull/* ]]; then
4646
tag=pr-$(echo ${{ github.ref }} | cut -c11-|sed 's,/merge,,')
4747
else
48-
tag=$(echo ${{ github.ref_name }}|sed 's,/merge,,')
48+
# Sanitize the tag by replacing invalid characters with hyphens
49+
tag=$(echo ${{ github.ref_name }}|sed 's,/merge,,' | sed 's,[/.],-,g')
4950
fi
5051
for image in ./cmd/*;do
5152
ko build -B -t "${tag}" --platform="${{ env.PLATFORMS }}" "${image}"

.tekton/boussole.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ spec:
2323
value: "{{ git_auth_secret }}"
2424
- name: comment_sender
2525
value: "{{ sender }}"
26+
- name: merge_method
27+
value: "squash"
2628
#
2729
# Optional parameters (value is the default):
2830
#
@@ -44,8 +46,5 @@ spec:
4446
# - name: lgtm_review_event
4547
# value: "APPROVE"
4648
#
47-
# The merge method to use. Can be one of: merge, squash, rebase
48-
# - name: merge_method
49-
# value: "rebase"
5049
pipelineRef:
5150
name: boussole

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require (
5353
github.com/cloudevents/sdk-go/sql/v2 v2.0.0-20240712172937-3ce6b2f1f011 // indirect
5454
github.com/coreos/go-oidc/v3 v3.9.0 // indirect
5555
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
56-
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
56+
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
5757
github.com/klauspost/compress v1.17.11 // indirect
5858
github.com/rickb777/plural v1.4.1 // indirect
5959
github.com/x448/float16 v0.8.4 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e/go.mod h1:RCMrTZv
140140
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
141141
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
142142
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
143-
github.com/go-jose/go-jose/v3 v3.0.3 h1:fFKWeig/irsp7XD2zBxvnmA/XaRWp5V3CBsZXJF7G7k=
144-
github.com/go-jose/go-jose/v3 v3.0.3/go.mod h1:5b+7YgP7ZICgJDBdfjZaIt+H/9L9T/YQrVfLAMboGkQ=
143+
github.com/go-jose/go-jose/v3 v3.0.4 h1:Wp5HA7bLQcKnf6YYao/4kpRpVMp/yf6+pJKV8WFSaNY=
144+
github.com/go-jose/go-jose/v3 v3.0.4/go.mod h1:5b+7YgP7ZICgJDBdfjZaIt+H/9L9T/YQrVfLAMboGkQ=
145145
github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
146146
github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
147147
github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=

vendor/github.com/go-jose/go-jose/v3/jwe.go

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/go-jose/go-jose/v3/jws.go

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ github.com/gfleury/go-bitbucket-v1
114114
# github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e
115115
## explicit; go 1.13
116116
github.com/go-fed/httpsig
117-
# github.com/go-jose/go-jose/v3 v3.0.3
117+
# github.com/go-jose/go-jose/v3 v3.0.4
118118
## explicit; go 1.12
119119
github.com/go-jose/go-jose/v3
120120
github.com/go-jose/go-jose/v3/cipher

0 commit comments

Comments
 (0)