Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 4e2a4e2

Browse files
authored
Update build-exe.yml
1 parent 8e8fed6 commit 4e2a4e2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-exe.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@latest
1616

1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@latest
1919
with:
2020
python-version: '3.11.6'
2121
architecture: ${{ matrix.architecture }}
@@ -27,14 +27,14 @@ jobs:
2727
pip install pyinstaller
2828
2929
- name: Build executable
30-
uses: Martin005/pyinstaller-action@v1.2.0
30+
uses: Martin005/pyinstaller-action@latest
3131
with:
3232
spec: './scr/main.py'
3333
requirements: './scr/requirements.txt'
3434
options: --onefile, --name ${{ github.event.repository.name }}-${{ matrix.architecture }}
3535
python_arch: ${{ matrix.architecture }}
3636

37-
- uses: actions/upload-artifact@v4
37+
- uses: actions/upload-artifact@latest
3838
with:
3939
name: '${{ github.event.repository.name }}-${{ matrix.architecture }}'
4040
path: ./dist/*.exe
@@ -45,13 +45,13 @@ jobs:
4545

4646
steps:
4747
- name: Download artifacts
48-
uses: actions/download-artifact@v4.1.7
48+
uses: actions/download-artifact@latest
4949
with:
5050
name: ${{ github.event.repository.name }}-x86
5151
path: ./dist
5252

5353
- name: Download artifacts
54-
uses: actions/download-artifact@v4.1.7
54+
uses: actions/download-artifact@latest
5555
with:
5656
name: ${{ github.event.repository.name }}-x64
5757
path: ./dist

0 commit comments

Comments
 (0)