Skip to content

Commit b00095d

Browse files
committed
Fix workflow waring message
1 parent 4968e9a commit b00095d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ jobs:
8383
- uses: actions/checkout@v3
8484
with:
8585
ref: main
86-
- name: Set up Python 3.8
86+
- name: Set up Python 3.12
8787
uses: actions/setup-python@v4
8888
with:
89-
python-version: '3.8'
89+
python-version: '3.12'
9090
- name: Install dependencies
9191
run: |
9292
python -m pip install --upgrade pip
@@ -96,7 +96,7 @@ jobs:
9696
run: ${{matrix.CMD_BUILD}}
9797
- name: Upload Release Asset
9898
id: upload-release-asset
99-
uses: actions/upload-release-asset@v1.0.1
99+
uses: softprops/action-gh-release@v1
100100
env:
101101
GITHUB_TOKEN: ${{ secrets.TOKEN }}
102102
with:
@@ -114,7 +114,7 @@ jobs:
114114
- name: Set up Python
115115
uses: actions/setup-python@v4
116116
with:
117-
python-version: '3.8'
117+
python-version: '3.12'
118118
- name: Install dependencies
119119
run: |
120120
python -m pip install --upgrade pip

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.8]
19+
python-version: [3.10]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -37,13 +37,13 @@ jobs:
3737
runs-on: windows-latest
3838
strategy:
3939
matrix:
40-
python-version: [3.8]
40+
python-version: [3.10]
4141
steps:
4242
- uses: actions/checkout@v3
43-
- name: Set up Python 3.8
43+
- name: Set up Python 3.10
4444
uses: actions/setup-python@v4
4545
with:
46-
python-version: '3.8'
46+
python-version: '3.10'
4747
- name: Install & Run
4848
run: |
4949
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)