From 406b771ff0f334488e1956081bb316b48376193e Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 17 Jan 2024 14:42:12 -0500 Subject: [PATCH] fetch-vectors: change repo for x509-limbo (#10199) * fetch-vectors: change repo for x509-limbo Signed-off-by: William Woodruff * workflows: trailofbits -> C2SP Signed-off-by: William Woodruff --------- Signed-off-by: William Woodruff --- .github/actions/fetch-vectors/action.yml | 2 +- .github/workflows/x509-limbo-version-bump.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/fetch-vectors/action.yml b/.github/actions/fetch-vectors/action.yml index 2907067cd8b6..0a270b6baa50 100644 --- a/.github/actions/fetch-vectors/action.yml +++ b/.github/actions/fetch-vectors/action.yml @@ -14,7 +14,7 @@ runs: - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 with: - repository: "trailofbits/x509-limbo" + repository: "C2SP/x509-limbo" path: "x509-limbo" # Latest commit on the x509-limbo main branch, as of Jan 17, 2024. ref: "13ee076aae65a2ccfcfe5d3df3fa8b1fb8c540fd" # x509-limbo-ref diff --git a/.github/workflows/x509-limbo-version-bump.yml b/.github/workflows/x509-limbo-version-bump.yml index 5434dbccfd0f..e4a42bf3155f 100644 --- a/.github/workflows/x509-limbo-version-bump.yml +++ b/.github/workflows/x509-limbo-version-bump.yml @@ -16,12 +16,12 @@ jobs: - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 - id: check-sha-x509-limbo run: | - SHA=$(git ls-remote https://github.com/trailofbits/x509-limbo refs/heads/main | cut -f1) + SHA=$(git ls-remote https://github.com/C2SP/x509-limbo refs/heads/main | cut -f1) LAST_COMMIT=$(grep x509-limbo-ref .github/actions/fetch-vectors/action.yml | grep -oE '[a-f0-9]{40}') if ! grep -q "$SHA" .github/actions/fetch-vectors/action.yml; then echo "COMMIT_SHA=${SHA}" >> $GITHUB_OUTPUT echo "COMMIT_MSG<> $GITHUB_OUTPUT - echo -e "## x509-limbo\n[Commit: ${SHA}](https://github.com/trailofbits/x509-limbo/commit/${SHA})\n\n[Diff](https://github.com/trailofbits/x509-limbo/compare/${LAST_COMMIT}...${SHA}) between the last commit hash merged to this repository and the new commit." >> $GITHUB_OUTPUT + echo -e "## x509-limbo\n[Commit: ${SHA}](https://github.com/C2SP/x509-limbo/commit/${SHA})\n\n[Diff](https://github.com/C2SP/x509-limbo/compare/${LAST_COMMIT}...${SHA}) between the last commit hash merged to this repository and the new commit." >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT fi - name: Update x509-limbo