Skip to content

Commit

Permalink
Update actions, fix flake error
Browse files Browse the repository at this point in the history
  • Loading branch information
Trekky12 committed Aug 25, 2024
1 parent b17db20 commit 9a35385
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Package Application
uses: JackMcKew/pyinstaller-action-linux@main
with:
path: .

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: kbvs
path: dist/linux
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Package Application
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: .

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: kbvs
path: dist/windows
8 changes: 4 additions & 4 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion slideshow/SlideManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ def getAudioFilterChains(self):
i,
i)
)

section_duration = section["end"] - section["start"]
audio_track_progress = audio_track_progress + section_duration
else:
Expand Down

0 comments on commit 9a35385

Please sign in to comment.