From 054999e40081c3b4cc8439260195b45e3e845a41 Mon Sep 17 00:00:00 2001 From: Bob Date: Fri, 20 Feb 2026 15:28:33 +0000 Subject: [PATCH] ci: upgrade actions/upload-artifact from v3 to v4 v3 is deprecated and auto-failing since April 2024: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ This was blocking all PR checks on Windows. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50d0b8c6..1c8ab353 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, windows-latest, macOS-12] + os: [ubuntu-latest, windows-latest, macos-latest] python_version: [3.9] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - name: Set up Python @@ -51,7 +51,7 @@ jobs: run: | dist/aw-watcher-window/aw-watcher-window --help - name: Upload package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: aw-watcher-window-${{ runner.os }}-py${{ matrix.python_version }} path: dist/aw-watcher-window @@ -59,7 +59,7 @@ jobs: typecheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' - name: Set up Python