Compare commits

..
1 Commits
Author SHA1 Message Date
Brian DeHamer 6c3e7c389e testing
Signed-off-by: Brian DeHamer <[email protected]>
2024-06-13 10:50:45 -07:00
4 changed files with 14 additions and 14 deletions
Generated Vendored
+1 -1
View File
@@ -79927,7 +79927,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.createAttestation = void 0; exports.createAttestation = void 0;
const attest_1 = __nccwpck_require__(74113); const attest_1 = __nccwpck_require__(74113);
const oci_1 = __nccwpck_require__(47353); const oci_1 = __nccwpck_require__(47353);
const OCI_TIMEOUT = 30000; const OCI_TIMEOUT = 2000;
const OCI_RETRY = 3; const OCI_RETRY = 3;
const createAttestation = async (subject, predicate, opts) => { const createAttestation = async (subject, predicate, opts) => {
// Sign provenance w/ Sigstore // Sign provenance w/ Sigstore
+9 -9
View File
@@ -1,18 +1,18 @@
{ {
"name": "actions/attest", "name": "actions/attest",
"version": "1.3.1", "version": "1.3.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "actions/attest", "name": "actions/attest",
"version": "1.3.1", "version": "1.3.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/attest": "^1.3.0", "@actions/attest": "^1.3.0",
"@actions/core": "^1.10.1", "@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0", "@actions/glob": "^0.4.0",
"@sigstore/oci": "^0.3.7", "@sigstore/oci": "^0.3.6",
"csv-parse": "^5.5.6" "csv-parse": "^5.5.6"
}, },
"devDependencies": { "devDependencies": {
@@ -1729,9 +1729,9 @@
} }
}, },
"node_modules/@sigstore/oci": { "node_modules/@sigstore/oci": {
"version": "0.3.7", "version": "0.3.6",
"resolved": "https://registry.npmjs.org/@sigstore/oci/-/oci-0.3.7.tgz", "resolved": "https://registry.npmjs.org/@sigstore/oci/-/oci-0.3.6.tgz",
"integrity": "sha512-1JmebwEXil+NVzugFURbC+D3Vzj6WyTI1B+7damUk94dWXamE9cJ057iSo72rupiSozM6N7lVMjtD1c/P5Rrrw==", "integrity": "sha512-nv/uHEHj6AbzGcBg1Cs7EsetB0M+N8GW1wYA26KQT6ymirv5UWUtqx9L1hbJjClpQ6/8R0vYXCpunvic2O1jfg==",
"dependencies": { "dependencies": {
"make-fetch-happen": "^13.0.1", "make-fetch-happen": "^13.0.1",
"proc-log": "^4.2.0" "proc-log": "^4.2.0"
@@ -9838,9 +9838,9 @@
} }
}, },
"@sigstore/oci": { "@sigstore/oci": {
"version": "0.3.7", "version": "0.3.6",
"resolved": "https://registry.npmjs.org/@sigstore/oci/-/oci-0.3.7.tgz", "resolved": "https://registry.npmjs.org/@sigstore/oci/-/oci-0.3.6.tgz",
"integrity": "sha512-1JmebwEXil+NVzugFURbC+D3Vzj6WyTI1B+7damUk94dWXamE9cJ057iSo72rupiSozM6N7lVMjtD1c/P5Rrrw==", "integrity": "sha512-nv/uHEHj6AbzGcBg1Cs7EsetB0M+N8GW1wYA26KQT6ymirv5UWUtqx9L1hbJjClpQ6/8R0vYXCpunvic2O1jfg==",
"requires": { "requires": {
"make-fetch-happen": "^13.0.1", "make-fetch-happen": "^13.0.1",
"proc-log": "^4.2.0" "proc-log": "^4.2.0"
+2 -2
View File
@@ -1,7 +1,7 @@
{ {
"name": "actions/attest", "name": "actions/attest",
"description": "Generate signed attestations for workflow artifacts", "description": "Generate signed attestations for workflow artifacts",
"version": "1.3.1", "version": "1.3.0",
"author": "", "author": "",
"private": true, "private": true,
"homepage": "https://github.com/actions/attest", "homepage": "https://github.com/actions/attest",
@@ -72,7 +72,7 @@
"@actions/attest": "^1.3.0", "@actions/attest": "^1.3.0",
"@actions/core": "^1.10.1", "@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0", "@actions/glob": "^0.4.0",
"@sigstore/oci": "^0.3.7", "@sigstore/oci": "^0.3.6",
"csv-parse": "^5.5.6" "csv-parse": "^5.5.6"
}, },
"devDependencies": { "devDependencies": {
+1 -1
View File
@@ -1,7 +1,7 @@
import { Attestation, Predicate, Subject, attest } from '@actions/attest' import { Attestation, Predicate, Subject, attest } from '@actions/attest'
import { attachArtifactToImage, getRegistryCredentials } from '@sigstore/oci' import { attachArtifactToImage, getRegistryCredentials } from '@sigstore/oci'
const OCI_TIMEOUT = 30000 const OCI_TIMEOUT = 2000
const OCI_RETRY = 3 const OCI_RETRY = 3
export type SigstoreInstance = 'public-good' | 'github' export type SigstoreInstance = 'public-good' | 'github'