diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aec01fa..99e9650 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,7 +47,7 @@ jobs: # Ref: https://github.com/actions/checkout - name: Checkout Source - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # Number of commits to fetch. 0 indicates all history for all branches and tags. # Default: 1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 88ce602..ab35a1e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,7 @@ jobs: # See: https://github.com/actions/checkout - name: "Checkout Source" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -53,9 +53,9 @@ jobs: # See: https://github.com/sigstore/cosign-installer # See: https://github.com/sigstore/cosign/releases - name: Install Cosign - uses: sigstore/cosign-installer@v4.1.1 + uses: sigstore/cosign-installer@v4.1.2 with: - cosign-release: 'v3.0.6' + cosign-release: 'v3.1.1' # See: https://github.com/anchore/sbom-action - name: Generate SBOM via Syft diff --git a/CHANGELOG.md b/CHANGELOG.md index 314d063..4e63bb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,19 @@ Date format: `YYYY-MM-DD` --- +## [1.59.2] - 2026-06-29 + +### Added +### Changed +- **debt:** Upgraded dependencies to their latest stable versions. + +### Deprecated +### Removed +### Fixed +### Security + +--- + ## [1.59.1] - 2026-04-08 ### Added diff --git a/README.md b/README.md index 7879d1e..ba6ff3a 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,10 @@ This module is a set of common types expressed as [Google Protocol Buffers](http To verify the integrity of the `types` source, run the following commands: ```sh -# Fetch the latest release tag from GitHub API (e.g., "v1.56.0") +# Fetch the latest release tag from GitHub API (e.g., "v1.59.0") TAG=$(curl -s https://api.github.com/repos/sixafter/types/releases/latest | jq -r .tag_name) -# Remove the leading "v" for filenames (e.g., "v1.56.0" -> "1.56.0") +# Remove the leading "v" for filenames (e.g., "v1.59.0" -> "1.59.0") VERSION=${TAG#v} # --------------------------------------------------------------------- diff --git a/sbin/proto-generate.sh b/sbin/proto-generate.sh index a663f49..617a1d6 100755 --- a/sbin/proto-generate.sh +++ b/sbin/proto-generate.sh @@ -32,7 +32,7 @@ if [[ ! -f buf.gen.yaml ]]; then fi echo "[INFO] Cleaning pb.go files" -rm proto/v1/pb/*.pb.go +rm proto/v1/pb/*.pb.go || true echo "[INFO] Running: proto generate" buf generate --template buf.gen.yaml