Skip to content

Commit 1295427

Browse files
authored
debt: Upgraded dependencies to latest stable versions. (#26)
1 parent 48125c1 commit 1295427

5 files changed

Lines changed: 20 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
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

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
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

@@ -53,9 +53,9 @@ jobs:
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

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ This module is a set of common types expressed as [Google Protocol Buffers](http
2929
To 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")
3333
TAG=$(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")
3636
VERSION=${TAG#v}
3737

3838
# ---------------------------------------------------------------------

sbin/proto-generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [[ ! -f buf.gen.yaml ]]; then
3232
fi
3333

3434
echo "[INFO] Cleaning pb.go files"
35-
rm proto/v1/pb/*.pb.go
35+
rm proto/v1/pb/*.pb.go || true
3636

3737
echo "[INFO] Running: proto generate"
3838
buf generate --template buf.gen.yaml

0 commit comments

Comments
 (0)