From ac38e8c55a6df1aec40e9e297a26bcf1bffc557b Mon Sep 17 00:00:00 2001 From: "John C. Bland II" Date: Wed, 12 Aug 2026 15:28:20 -0500 Subject: [PATCH 1/2] chore: upgrade action runtime to node24 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5e6651a..40c9d42 100644 --- a/action.yml +++ b/action.yml @@ -31,6 +31,6 @@ inputs: description: "Commit status state wait for. Valid values 'success', 'error', 'failure', 'pending'" default: "success" runs: - using: "node20" + using: "node24" main: "index.js" From 37c3057cdf4a90024d4056f9eb26fed4b37a93ba Mon Sep 17 00:00:00 2001 From: "John C. Bland II" Date: Thu, 13 Aug 2026 10:48:35 -0500 Subject: [PATCH 2/2] fix: use GITHUB_TOKEN for test commit statuses PUBLIC_REPO_ACCESS_TOKEN no longer exists, so the set_status jobs failed with 'Input required and not supplied: token' and every wait timed out. The default token with statuses: write can set commit statuses on this repo. --- .github/workflows/test-increased-wait-time.yml | 6 +++++- .github/workflows/test-positive.yml | 6 +++++- .github/workflows/test-wrong-status.yml | 8 ++++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-increased-wait-time.yml b/.github/workflows/test-increased-wait-time.yml index 389e1c5..e862a2f 100644 --- a/.github/workflows/test-increased-wait-time.yml +++ b/.github/workflows/test-increased-wait-time.yml @@ -15,6 +15,10 @@ on: description: "The sha of the commit that triggered the workflow run" required: false type: "string" +permissions: + contents: read + statuses: write + jobs: setup: runs-on: ubuntu-latest @@ -46,7 +50,7 @@ jobs: with: repo: ${{ github.repository }} sha: ${{ github.sha }} - token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} status: success context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app diff --git a/.github/workflows/test-positive.yml b/.github/workflows/test-positive.yml index 5820b31..f119852 100644 --- a/.github/workflows/test-positive.yml +++ b/.github/workflows/test-positive.yml @@ -15,6 +15,10 @@ on: description: "The sha of the commit that triggered the workflow run" required: false type: "string" +permissions: + contents: read + statuses: write + jobs: setup: runs-on: ubuntu-latest @@ -47,7 +51,7 @@ jobs: with: repo: ${{ github.repository }} sha: ${{ github.sha }} - token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} status: success context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app diff --git a/.github/workflows/test-wrong-status.yml b/.github/workflows/test-wrong-status.yml index 1c794e0..d4cfc14 100644 --- a/.github/workflows/test-wrong-status.yml +++ b/.github/workflows/test-wrong-status.yml @@ -15,6 +15,10 @@ on: description: "The sha of the commit that triggered the workflow run" required: false type: "string" +permissions: + contents: read + statuses: write + jobs: setup: runs-on: ubuntu-latest @@ -47,7 +51,7 @@ jobs: with: repo: ${{ github.repository }} sha: ${{ github.sha }} - token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} status: pending context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app @@ -90,6 +94,6 @@ jobs: with: repo: ${{ github.repository }} sha: ${{ github.sha }} - token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} status: success context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app