From 98974f3d6ca3de909bf6e60d501ae33165d1e102 Mon Sep 17 00:00:00 2001 From: christopherbrumm Date: Wed, 17 Apr 2024 16:55:37 +0200 Subject: [PATCH] update: use checkout@v3; add PAT_TOKEN. --- .github/workflows/build_registry.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_registry.yml b/.github/workflows/build_registry.yml index 86f3302..7e44d52 100644 --- a/.github/workflows/build_registry.yml +++ b/.github/workflows/build_registry.yml @@ -15,7 +15,9 @@ jobs: steps: - name: Check out the code - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + token: ${{ secrets.PAT_TOKEN }} - name: Install required Python packages run: pip install -r .github/requirements.txt