From 70a5d77e4aa796f72e4c044515aad374eec65907 Mon Sep 17 00:00:00 2001 From: Jason Ragsdale Date: Fri, 13 Jun 2025 10:05:33 -0500 Subject: [PATCH 1/2] Added in checkout on the build step --- .github/workflows/build-and-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 777214e7..a12c265e 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -24,6 +24,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: + - uses: actions/checkout@v4 - uses: ./.github/actions/setup-go - name: Create bin directory From 25ff6d943681400babba62093905cf77fdc59316 Mon Sep 17 00:00:00 2001 From: Jason Ragsdale Date: Fri, 13 Jun 2025 10:09:16 -0500 Subject: [PATCH 2/2] Added checkout to discord-notify as well --- .github/workflows/discord-notify.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/discord-notify.yml b/.github/workflows/discord-notify.yml index ba3671b2..214da8a2 100644 --- a/.github/workflows/discord-notify.yml +++ b/.github/workflows/discord-notify.yml @@ -12,6 +12,7 @@ jobs: notify-discord: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - name: Get PR Metadata if: github.event_name == 'pull_request' uses: actions/github-script@v6