From 46441b05d47f6d49a6b34d45bc67d964d481f94e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 28 Apr 2025 22:36:39 +0300 Subject: [PATCH 1/2] Bump GitHub Actions --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3abe25..7280b36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: 'Remove existing PyManager install' run: | @@ -34,7 +34,7 @@ jobs: shell: powershell - name: Set up Python 3.14 - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: 3.14-dev From a1a8fe776e830f3722d5a6b6eac587551053eb88 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 28 Apr 2025 22:38:09 +0300 Subject: [PATCH 2/2] Allow testing feature branches and to trigger from UI --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7280b36..0c7fc70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,6 @@ name: 'Build and Test' -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] +on: [push, pull_request, workflow_dispatch] env: PIP_DISABLE_PIP_VERSION_CHECK: true