ci: update GitHub Actions to v4
- Update actions/checkout@v3 → v4 - Update actions/setup-python@v4 → v5 - Update actions/upload-artifact@v3 → v4 Fixes deprecation warning and build failures
This commit is contained in:
parent
9ea7400b82
commit
c1ede09aef
|
|
@ -12,10 +12,10 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
|
||||||
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
pyinstaller icon_extractor.spec --clean
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: EU-Icon-Extractor-Windows
|
name: EU-Icon-Extractor-Windows
|
||||||
path: dist/EU-Icon-Extractor.exe
|
path: dist/EU-Icon-Extractor.exe
|
||||||
|
|
@ -49,10 +49,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
|
||||||
|
|
@ -72,7 +72,7 @@ jobs:
|
||||||
pyinstaller icon_extractor.spec --clean
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: EU-Icon-Extractor-Linux
|
name: EU-Icon-Extractor-Linux
|
||||||
path: dist/EU-Icon-Extractor
|
path: dist/EU-Icon-Extractor
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue