From dc534f583ef0efe2d21adbd3ef17b42f94aacf51 Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Wed, 18 Mar 2026 17:31:22 +0200 Subject: [PATCH] Fix checkout action URL in integration and unit test workflows --- .github/workflows/integration.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 81790aa..ffce9d8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: "https://gitea.com/actions/checkout@v5" + uses: actions/checkout@v5 - name: Make bundled linux binaries executable (if present) run: | diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 27377e9..ded232c 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: "https://gitea.com/actions/checkout@v5" + uses: actions/checkout@v5 - name: Create venv and install project run: |