Skip to content

Commit cb8f133

Browse files
committed
Merge remote-tracking branch 'origin/main' into dev/add-turing-8.8-v1.x-usb-protocol
2 parents b9332c5 + 8df0b43 commit cb8f133

49 files changed

Lines changed: 510 additions & 60 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 'Checkout Repository'
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: 'Dependency Review'
2121
uses: actions/dependency-review-action@v4

.github/workflows/generate-windows-packages-debug.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Git Checkout ${{github.event.release.tag_name}}
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Python
2020
uses: actions/setup-python@v6
@@ -47,14 +47,14 @@ jobs:
4747
7z a -tzip turing-system-monitor-${{github.event.release.tag_name}}-portable-debug.zip ".\dist\turing-system-monitor"
4848
4949
- name: '📦 Archive Windows installer'
50-
uses: actions/upload-artifact@v5
50+
uses: actions/upload-artifact@v7
5151
with:
5252
name: turing-system-monitor-${{github.event.release.tag_name}}-debug
5353
path: tools\windows-installer\Output\turing-system-monitor-${{github.event.release.tag_name}}-debug.exe
5454
if-no-files-found: error
5555

5656
- name: '📦 Archive Windows portable archive'
57-
uses: actions/upload-artifact@v5
57+
uses: actions/upload-artifact@v7
5858
with:
5959
name: turing-system-monitor-${{github.event.release.tag_name}}-portable-debug
6060
path: turing-system-monitor-${{github.event.release.tag_name}}-portable-debug.zip

.github/workflows/generate-windows-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Git Checkout ${{github.event.release.tag_name}}
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Python
2020
uses: actions/setup-python@v6
@@ -47,14 +47,14 @@ jobs:
4747
7z a -tzip turing-system-monitor-${{github.event.release.tag_name}}-portable.zip ".\dist\turing-system-monitor"
4848
4949
- name: '📦 Archive Windows installer'
50-
uses: actions/upload-artifact@v5
50+
uses: actions/upload-artifact@v7
5151
with:
5252
name: turing-system-monitor-${{github.event.release.tag_name}}
5353
path: tools\windows-installer\Output\turing-system-monitor-${{github.event.release.tag_name}}.exe
5454
if-no-files-found: error
5555

5656
- name: '📦 Archive Windows portable archive'
57-
uses: actions/upload-artifact@v5
57+
uses: actions/upload-artifact@v7
5858
with:
5959
name: turing-system-monitor-${{github.event.release.tag_name}}-portable
6060
path: turing-system-monitor-${{github.event.release.tag_name}}-portable.zip

.github/workflows/lint-flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Set up Python 3.x
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/simple-program-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v6
2424
with:
@@ -59,7 +59,7 @@ jobs:
5959
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6060
6161
- name: Archive a screenshot
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: screenshot-py${{ matrix.python-version }}
6565
path: screenshot-*.png

.github/workflows/simple-program-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v6
2424
with:
@@ -59,7 +59,7 @@ jobs:
5959
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6060
6161
- name: Archive a screenshot
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: screenshot-py${{ matrix.python-version }}
6565
path: screenshot-*.png

.github/workflows/simple-program-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v6
2424
with:
@@ -65,7 +65,7 @@ jobs:
6565
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6666
6767
- name: Archive a screenshot
68-
uses: actions/upload-artifact@v5
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: screenshot-py${{ matrix.python-version }}
7171
path: screenshot-*.png

.github/workflows/system-monitor-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919
theme: [ "3.5inchTheme2" ]
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v6
2525
with:
@@ -65,7 +65,7 @@ jobs:
6565
cp screencap.png screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}.png
6666
6767
- name: Archive a screenshot
68-
uses: actions/upload-artifact@v5
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}
7171
path: screenshot-*.png

.github/workflows/system-monitor-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919
theme: [ "3.5inchTheme2" ]
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v6
2525
with:
@@ -65,7 +65,7 @@ jobs:
6565
cp screencap.png screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}.png
6666
6767
- name: Archive a screenshot
68-
uses: actions/upload-artifact@v5
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}
7171
path: screenshot-*.png

0 commit comments

Comments
 (0)