Skip to content

Commit e202578

Browse files
ci: upgrade actions/upload-artifact from v3 to v4 (#116)
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.
1 parent 9e8fba1 commit e202578

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-20.04, windows-latest, macOS-12]
16+
os: [ubuntu-latest, windows-latest, macos-latest]
1717
python_version: [3.9]
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
with:
2121
submodules: 'recursive'
2222
- name: Set up Python
@@ -51,15 +51,15 @@ jobs:
5151
run: |
5252
dist/aw-watcher-window/aw-watcher-window --help
5353
- name: Upload package
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: aw-watcher-window-${{ runner.os }}-py${{ matrix.python_version }}
5757
path: dist/aw-watcher-window
5858

5959
typecheck:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
submodules: 'recursive'
6565
- name: Set up Python

0 commit comments

Comments
 (0)