Skip to content

Commit 59b40f0

Browse files
committed
ci: update github actions to fix ci build
1 parent 502ba96 commit 59b40f0

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.11", "3.x"]
1212

1313
steps:
1414
- name: 🛒 Checkout repository
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: 🐍 Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
architecture: 'x64'
@@ -31,7 +31,7 @@ jobs:
3131
run: pytest --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3232

3333
- name: 🚀 Upload pytest test results
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: pytest-results-${{ matrix.python-version }}
3737
path: junit/test-results-${{ matrix.python-version }}.xml
@@ -42,15 +42,15 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
python-version: ["3.9", "3.10", "3.11", "3.12"]
45+
python-version: ["3.9", "3.11", "3.x"]
4646
steps:
4747
- name: 🛒 Checkout repository
4848
uses: actions/checkout@v4
4949
with:
5050
fetch-depth: 0
5151

5252
- name: 🐍 Set up Python ${{ matrix.python-version }}
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 🚚 Release APS2MQTT
1+
name: 🚚 Release
22

33
on:
44
push:
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: ⏰ Wait for builds to succeed
20-
uses: lewagon/wait-on-check-action@v1.3.1
20+
uses: lewagon/wait-on-check-action@v1.4.0
2121
with:
2222
ref: ${{ github.ref }}
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -32,7 +32,7 @@ jobs:
3232
token: ${{ secrets.SEMANTIC_PAT_TOKEN }}
3333

3434
- name: 🐍 Set up Python
35-
uses: actions/setup-python@v4
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: '3.9'
3838
architecture: 'x64'

0 commit comments

Comments
 (0)