Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci

on: [pull_request] # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
pull-request:
- main
- release-*
push:
- main
- release-*
Comment on lines +4 to +9
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is supposed to be

Suggested change
pull-request:
- main
- release-*
push:
- main
- release-*
pull-request:
branches:
- main
- release-*
push:
branches:
- main
- release-*


concurrency:
group: ${{ github.workflow }}-${{ github.event.pull-request.number || github.ref }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ permissions:

on:
push:
branches: [main]
branches:
- main
- release-*
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '**/*.yaml'
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
branches:
- main
- release-*
paths-ignore:
- '**/*.md'
- '**/*.txt'
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tektoncd/cli

go 1.25.5
go 1.25.6

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand All @@ -20,7 +20,7 @@ require (
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/sigstore/cosign/v2 v2.6.2
github.com/sigstore/sigstore v1.10.3
github.com/sigstore/sigstore v1.10.4
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/tektoncd/chains v0.26.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1180,8 +1180,8 @@ github.com/sigstore/rekor v1.4.3 h1:2+aw4Gbgumv8vYM/QVg6b+hvr4x4Cukur8stJrVPKU0=
github.com/sigstore/rekor v1.4.3/go.mod h1:o0zgY087Q21YwohVvGwV9vK1/tliat5mfnPiVI3i75o=
github.com/sigstore/rekor-tiles/v2 v2.0.1 h1:1Wfz15oSRNGF5Dzb0lWn5W8+lfO50ork4PGIfEKjZeo=
github.com/sigstore/rekor-tiles/v2 v2.0.1/go.mod h1:Pjsbhzj5hc3MKY8FfVTYHBUHQEnP0ozC4huatu4x7OU=
github.com/sigstore/sigstore v1.10.3 h1:s7fBYYOzW/2Vd0nND2ZdpWySb5vRF2u9eix/NZMHJm0=
github.com/sigstore/sigstore v1.10.3/go.mod h1:T26vXIkpnGEg391v3TaZ8EERcXbnjtZb/1erh5jbIQk=
github.com/sigstore/sigstore v1.10.4 h1:ytOmxMgLdcUed3w1SbbZOgcxqwMG61lh1TmZLN+WeZE=
github.com/sigstore/sigstore v1.10.4/go.mod h1:tDiyrdOref3q6qJxm2G+JHghqfmvifB7hw+EReAfnbI=
github.com/sigstore/sigstore-go v1.1.4 h1:wTTsgCHOfqiEzVyBYA6mDczGtBkN7cM8mPpjJj5QvMg=
github.com/sigstore/sigstore-go v1.1.4/go.mod h1:2U/mQOT9cjjxrtIUeKDVhL+sHBKsnWddn8URlswdBsg=
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.10.3 h1:D/FRl5J9UYAJPGZRAJbP0dH78pfwWnKsyCSBwFBU8CI=
Expand Down
8 changes: 6 additions & 2 deletions vendor/github.com/sigstore/sigstore/pkg/tuf/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ github.com/sigstore/rekor-tiles/v2/pkg/generated/protobuf
github.com/sigstore/rekor-tiles/v2/pkg/note
github.com/sigstore/rekor-tiles/v2/pkg/types/verifier
github.com/sigstore/rekor-tiles/v2/pkg/verify
# github.com/sigstore/sigstore v1.10.3
# github.com/sigstore/sigstore v1.10.4
## explicit; go 1.25.0
github.com/sigstore/sigstore/pkg/cryptoutils
github.com/sigstore/sigstore/pkg/cryptoutils/goodkey
Expand Down