Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}

# ---------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion sbin/proto-generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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