Compare commits
7
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d47594b536 | ||
|
|
2823824b94 | ||
|
|
ab82301c62 | ||
|
|
d3ade9ecfc | ||
|
|
acb230b99a | ||
|
|
5e0fa1aaaa | ||
|
|
ac2468e605 |
@@ -1,5 +1,12 @@
|
|||||||
# @actions/attest Releases
|
# @actions/attest Releases
|
||||||
|
|
||||||
|
### 2.0.0
|
||||||
|
|
||||||
|
- Add support for Node 24 [#2110](https://github.com/actions/toolkit/pull/2110)
|
||||||
|
- Bump @sigstore/bundle from 3.0.0 to 3.1.0
|
||||||
|
- Bump @sigstore/sign from 3.0.0 to 3.1.0
|
||||||
|
- Bump jose from 5.2.3 to 5.10.0
|
||||||
|
|
||||||
### 1.6.0
|
### 1.6.0
|
||||||
|
|
||||||
- Update `buildSLSAProvenancePredicate` to populate `workflow.ref` field from the `ref` claim in the OIDC token [#1969](https://github.com/actions/toolkit/pull/1969)
|
- Update `buildSLSAProvenancePredicate` to populate `workflow.ref` field from the `ref` claim in the OIDC token [#1969](https://github.com/actions/toolkit/pull/1969)
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@actions/attest",
|
"name": "@actions/attest",
|
||||||
"version": "1.6.0",
|
"version": "2.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@actions/attest",
|
"name": "@actions/attest",
|
||||||
"version": "1.6.0",
|
"version": "2.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@actions/attest",
|
"name": "@actions/attest",
|
||||||
"version": "1.6.0",
|
"version": "2.0.0",
|
||||||
"description": "Actions attestation lib",
|
"description": "Actions attestation lib",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"github",
|
"github",
|
||||||
|
|||||||
@@ -102,8 +102,7 @@ function toAttestation(bundle: Bundle, attestationID?: string): Attestation {
|
|||||||
throw new Error('Bundle must contain an x509 certificate')
|
throw new Error('Bundle must contain an x509 certificate')
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert Buffer to Uint8Array for Node.js 24 compatibility
|
const signingCert = new X509Certificate(certBytes)
|
||||||
const signingCert = new X509Certificate(new Uint8Array(certBytes))
|
|
||||||
|
|
||||||
// Collect transparency log ID if available
|
// Collect transparency log ID if available
|
||||||
const tlogEntries = bundle.verificationMaterial.tlogEntries
|
const tlogEntries = bundle.verificationMaterial.tlogEntries
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
|
## 3.0.0
|
||||||
|
- Add support for Node 24 [#2110](https://github.com/actions/toolkit/pull/2110)
|
||||||
|
|
||||||
## 2.2.3
|
## 2.2.3
|
||||||
- Fixed an issue where proxy username and password were not handled correctly [#1799](https://github.com/actions/toolkit/pull/1799)
|
- Fixed an issue where proxy username and password were not handled correctly [#1799](https://github.com/actions/toolkit/pull/1799)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user