Skip to content

Commit c88384e

Browse files
committed
Update Trivy to version 0.68.1
1 parent e3e3425 commit c88384e

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.68.1.1] - 2025-12-04
9+
10+
### Changed
11+
- Updated Trivy binary from v0.67.2 to v0.68.1
12+
- Updated all platform binary checksums
13+
814
## [0.67.2.4] - 2024-11-24
915

1016
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ See [pre-commit] for instructions
2525
Sample `.pre-commit-config.yaml`:
2626
```yaml
2727
- repo: https://github.com/eccenca/pre-commit-mirrors-trivy
28-
rev: v0.67.2.4
28+
rev: v0.68.1.1
2929
hooks:
3030
- id: trivy-fs
3131
args:

setup.cfg

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = trivy-py-ecc
3-
version = 0.67.2.4
3+
version = 0.68.1.1
44
description = Python wrapper around invoking trivy (https://trivy.dev/)
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -25,48 +25,48 @@ download_scripts =
2525
[trivy]
2626
group = trivy-binary
2727
marker = sys_platform == "linux" and platform_machine == "x86_64"
28-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_Linux-64bit.tar.gz
29-
sha256 = 546511a5514afc813c0b72e4abeea2c16a32228a13a1e5114d927c190e76b1f9
28+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_Linux-64bit.tar.gz
29+
sha256 = 63e37242088e418651931f891963c19554faa19f0591fe6b40b606152051df2f
3030
extract = tar
3131
extract_path = trivy
3232

3333
[trivy]
3434
group = trivy-binary
3535
marker = sys_platform == "linux" and platform_machine == "aarch64"
36-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_Linux-ARM64.tar.gz
37-
sha256 = e4f28390b06cdaaed94f8c49cce2c4c847938b5188aefdeb82453f2e933e57cb
36+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_Linux-ARM64.tar.gz
37+
sha256 = b29ea550f573afbcae3c86fb2b5e0ebba76b7cb0965e3787c4e8cb884d2c1d57
3838
extract = tar
3939
extract_path = trivy
4040

4141
[trivy]
4242
group = trivy-binary
4343
marker = sys_platform == "linux" and platform_machine == "armv7l"
44-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_Linux-ARM.tar.gz
45-
sha256 = d341fe2ea7044a5e5fe099f9f6b278f56d6b479718a73268788f828ce49c09cb
44+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_Linux-ARM.tar.gz
45+
sha256 = 99ea0755a596c1be411ec76fee1d7b3809e10d86d611a24bb7b01edbfbf309a3
4646
extract = tar
4747
extract_path = trivy
4848

4949
[trivy]
5050
group = trivy-binary
5151
marker = sys_platform == "darwin" and platform_machine == "arm64"
52-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_macOS-ARM64.tar.gz
53-
sha256 = 6b3163667f29fc608a2ed647c1bd42023af5779349286148190a168c5b3f28f1
52+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_macOS-ARM64.tar.gz
53+
sha256 = 4dd3d2e74e1b6f6f7fd5fbf55489727698f586d6a6a0cff3421031a05b80bcac
5454
extract = tar
5555
extract_path = trivy
5656

5757
[trivy]
5858
group = trivy-binary
5959
marker = sys_platform == "darwin" and platform_machine == "x86_64"
60-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_macOS-64bit.tar.gz
61-
sha256 = 4a5b936a8d89b508ecdc6edd65933b6fe3e9a368796cbdf917fd0df393f26542
60+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_macOS-64bit.tar.gz
61+
sha256 = d5b5bd3b3c3626d223c3981cc40f4709f00a6327a681b588d2fc64a3aa9d02c5
6262
extract = tar
6363
extract_path = trivy
6464

6565
[trivy.exe]
6666
group = trivy-binary
6767
marker = sys_platform == "win32" and platform_machine == "AMD64"
6868
marker = sys_platform == "cygwin" and platform_machine == "x86_64"
69-
url = https://github.com/aquasecurity/trivy/releases/download/v0.67.2/trivy_0.67.2_windows-64bit.zip
70-
sha256 = ad6a7a706902ec3248d8905a32d0c15630958ab3040b8ea0373a6f5a2da30a94
69+
url = https://github.com/aquasecurity/trivy/releases/download/v0.68.1/trivy_0.68.1_windows-64bit.zip
70+
sha256 = 600fc65bdb486e160efeedf8fff8ef6be8e9d2e82f2ea4db82ad23263ed5f902
7171
extract = zip
7272
extract_path = trivy.exe

0 commit comments

Comments
 (0)