From 391b3201982f777a47b549a5fa07e223471ef17c Mon Sep 17 00:00:00 2001 From: Andrew Thompson Date: Tue, 3 Oct 2023 09:17:38 -0700 Subject: [PATCH 1/6] Generate algorthmic report card for september 11 - september 25th --- manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 24ec54a..6a3b9df 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { - "serial": 2023093001, - "report_prefix": "https://shdw-drive.genesysgo.net/DhH4ephnFvLArL9sZMFHNFWCPUSFKZmYXHZSfVTnKQCt/", - "hash": "1HChbQO6SkbrvqGthWG3YDl6CeqPRNHoN8Nd4VxVkzE=", + "serial": 2023100301, + "report_prefix": "https://shdw-drive.genesysgo.net/3DvkYWGineRxY2zCG4Yexwo5GP8kaRooaUaSzWf1DiFg/", + "hash": "dbY8K6a7w0unYoRkcDU/HKuZkehM8SW0F6fyXcGtxoQ=", "signatures": [ { "address": "13hSNQ6KDnFcG8zKJg79HFcKNPcqg4f4hSnxaSjpUsyh7UAvRak", - "signature": "iSCpwIofIjLasmSo4YWyXiYxVHyeNNlkJ12SCtn+gPQwd+rsuFvc+09L0DAaHbbMnWtIvirNq9iG9/BiwrOqBQ==" + "signature": "NBo2VPbR/hghunB7TmY8oyUESBLjXpqIh7NoXoKfegqRBTIddTl+Pl/yfwPnaJfVYUheKPlxuJE0HN6W9qOTBg==" } ] } From 0163a3dc9b7a063477436618bd5b1b22bc0a42d6 Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Tue, 3 Oct 2023 11:52:41 -0700 Subject: [PATCH 2/6] upgrade install action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b37743..7a9e359 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v2 - name: Install xorf-generator - uses: jaxxstorm/action-install-gh-release@v1.3.1 + uses: jaxxstorm/action-install-gh-release@v1.10.0 env: ## Allow install into PATH ACTIONS_ALLOW_UNSECURE_COMMANDS: true From 98e8e92e82285d2a912b65fd1ea2d3cb2269d76f Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Tue, 3 Oct 2023 14:17:07 -0700 Subject: [PATCH 3/6] Update to denylist.bin --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a9e359..0eda5e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: echo "::set-output name=serial::$(jq .serial manifest.json)" - name: Download descriptor - run: wget ${{steps.set_descriptor.outputs.descriptor_path}}descriptor.json + run: wget ${{steps.set_descriptor.outputs.descriptor_path}}descriptor.bin - name: Generate signing data run: xorf-generator data generate --serial ${{steps.set_serial.outputs.serial}} From 0b4f49a4de1324a3e8c23c96f54385da4d297e55 Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Tue, 3 Oct 2023 14:22:04 -0700 Subject: [PATCH 4/6] upgrade name/serial steps --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0eda5e3..c853f4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,12 +29,12 @@ jobs: - name: Get descriptor path id: set_descriptor run: | - echo "::set-output name=descriptor_path::$(jq .report_prefix manifest.json)" + echo "descriptor_path=$(jq .report_prefix manifest.json)" >> $GITHUB_ENV - name: Get serial id: set_serial run: | - echo "::set-output name=serial::$(jq .serial manifest.json)" + echo "serial=$(jq .serial manifest.json)" >> $GITHUB_ENV - name: Download descriptor run: wget ${{steps.set_descriptor.outputs.descriptor_path}}descriptor.bin From b0ef7e8339b7d807a61bf87af9a2bba9d9352465 Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Tue, 3 Oct 2023 14:25:21 -0700 Subject: [PATCH 5/6] get env for serial/path --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c853f4e..f5a8b6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,10 +37,10 @@ jobs: echo "serial=$(jq .serial manifest.json)" >> $GITHUB_ENV - name: Download descriptor - run: wget ${{steps.set_descriptor.outputs.descriptor_path}}descriptor.bin + run: wget ${{env.descriptor_path}}descriptor.bin - name: Generate signing data - run: xorf-generator data generate --serial ${{steps.set_serial.outputs.serial}} + run: xorf-generator data generate --serial ${{env.serial}} - name: Check manifest run: xorf-generator manifest verify From eb038b1787f3ac2f32c5c48b77e9c8a0fd49d707 Mon Sep 17 00:00:00 2001 From: Marc Nijdam Date: Tue, 3 Oct 2023 14:27:20 -0700 Subject: [PATCH 6/6] update checkout action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5a8b6d..577d9ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install xorf-generator uses: jaxxstorm/action-install-gh-release@v1.10.0