From 95699b72012a29520e970c6cfca75553c3dbd092 Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Wed, 5 Jun 2024 13:40:17 -0400 Subject: [PATCH] Modified GitHub Actions checkout to get the active branch --- .github/workflows/packaging.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index e28dd79..22a2c12 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -42,7 +42,9 @@ jobs: echo "runner.arch=$RUNNER_ARCH" - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + ref: ${{ github.ref }} - name: Set up Python uses: actions/setup-python@v4