File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747
4848 # Ref: https://github.com/actions/checkout
4949 - name : Checkout Source
50- uses : actions/checkout@v6
50+ uses : actions/checkout@v7
5151 with :
5252 # Number of commits to fetch. 0 indicates all history for all branches and tags.
5353 # Default: 1
Original file line number Diff line number Diff line change 3636
3737 # See: https://github.com/actions/checkout
3838 - name : " Checkout Source"
39- uses : actions/checkout@v6
39+ uses : actions/checkout@v7
4040 with :
4141 fetch-depth : 0
4242
5353 # See: https://github.com/sigstore/cosign-installer
5454 # See: https://github.com/sigstore/cosign/releases
5555 - name : Install Cosign
56- uses : sigstore/cosign-installer@v4.1.1
56+ uses : sigstore/cosign-installer@v4.1.2
5757 with :
58- cosign-release : ' v3.0.6 '
58+ cosign-release : ' v3.1.1 '
5959
6060 # See: https://github.com/anchore/sbom-action
6161 - name : Generate SBOM via Syft
Original file line number Diff line number Diff line change @@ -19,6 +19,19 @@ Date format: `YYYY-MM-DD`
1919
2020---
2121
22+ ## [ 1.59.2] - 2026-06-29
23+
24+ ### Added
25+ ### Changed
26+ - ** debt:** Upgraded dependencies to their latest stable versions.
27+
28+ ### Deprecated
29+ ### Removed
30+ ### Fixed
31+ ### Security
32+
33+ ---
34+
2235## [ 1.59.1] - 2026-04-08
2336
2437### Added
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ This module is a set of common types expressed as [Google Protocol Buffers](http
2929To verify the integrity of the ` types ` source, run the following commands:
3030
3131``` sh
32- # Fetch the latest release tag from GitHub API (e.g., "v1.56 .0")
32+ # Fetch the latest release tag from GitHub API (e.g., "v1.59 .0")
3333TAG=$( curl -s https://api.github.com/repos/sixafter/types/releases/latest | jq -r .tag_name)
3434
35- # Remove the leading "v" for filenames (e.g., "v1.56 .0" -> "1.56 .0")
35+ # Remove the leading "v" for filenames (e.g., "v1.59 .0" -> "1.59 .0")
3636VERSION=${TAG# v}
3737
3838# ---------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if [[ ! -f buf.gen.yaml ]]; then
3232fi
3333
3434echo " [INFO] Cleaning pb.go files"
35- rm proto/v1/pb/* .pb.go
35+ rm proto/v1/pb/* .pb.go || true
3636
3737echo " [INFO] Running: proto generate"
3838buf generate --template buf.gen.yaml
You can’t perform that action at this time.
0 commit comments