Skip to content

Commit b1350c3

Browse files
committed
Update Workflows to adapt Node 20 Update
1 parent a2f9660 commit b1350c3

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- name: Check-out repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Setup Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax
3030
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
@@ -41,13 +41,14 @@ jobs:
4141
with:
4242
nuitka-version: main
4343
script-name: main.py
44+
enable-plugins: flet
4445
onefile: true
4546
standalone: true
4647
disable-console: true
4748
windows-icon-from-ico: ./asset/spicon.ico
4849

4950
- name: Upload Artifacts
50-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5152
with:
5253
name: ${{ runner.os }} Build
5354
path: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: [macos-latest, ubuntu-latest, windows-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up Python 3.10
23-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: "3.10"
2626
- name: Install dependencies

0 commit comments

Comments
 (0)