Skip to content

Commit 629439d

Browse files
committed
[actions] Bump checkout, setup-python, and upload-artifact
1 parent e79c108 commit 629439d

10 files changed

Lines changed: 28 additions & 28 deletions

.github/workflows/build-windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
IMAGEIO_FFMPEG_EXE: ""
4141

4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444

4545
- name: Set up Python ${{ matrix.python-version }}
46-
uses: actions/setup-python@v5
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
cache: 'pip'
@@ -99,7 +99,7 @@ jobs:
9999
./dist/scenedetect/scenedetect -i tests/resources/goldeneye.mp4 detect-content time -e 2s
100100
101101
- name: Upload Artifact
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v6
103103
with:
104104
name: PySceneDetect-win64_portable
105105
path: dist/scenedetect
@@ -109,11 +109,11 @@ jobs:
109109
runs-on: windows-latest
110110
needs: build
111111
steps:
112-
- uses: actions/checkout@v4
112+
- uses: actions/checkout@v5
113113
with:
114114
ref: resources
115115

116-
- uses: actions/download-artifact@v4.1.7
116+
- uses: actions/download-artifact@v7
117117
with:
118118
name: PySceneDetect-win64_portable
119119
path: build

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
scenedetect_version: ""
4242

4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

4646
- name: Setup FFmpeg
4747
uses: ./.github/actions/setup-ffmpeg
4848
with:
4949
github-token: ${{ secrets.GITHUB_TOKEN }}
5050

5151
- name: Set up Python ${{ matrix.python-version }}
52-
uses: actions/setup-python@v5
52+
uses: actions/setup-python@v6
5353
with:
5454
python-version: ${{ matrix.python-version }}
5555
cache: 'pip'
@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Upload Package
107107
if: ${{ matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest' }}
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v6
109109
with:
110110
name: scenedetect-dist
111111
path: |

.github/workflows/check-code-format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Set up Python 3.12
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.12'
3030
cache: 'pip'

.github/workflows/check-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- name: Set up Python 3.12
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: '3.12'
3535
cache: 'pip'

.github/workflows/codeql.yml

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

3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939

4040
- name: Initialize CodeQL
4141
uses: github/codeql-action/init@v3

.github/workflows/dependency-review.yml

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

.github/workflows/generate-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
scenedetect_docs_dest: ''
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Set up Python 3.12
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: '3.12'
2929
cache: 'pip'

.github/workflows/generate-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Set up Python 3.12
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.12'
2323
cache: 'pip'

.github/workflows/publish-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check workflows
24-
uses: actions/github-script@v6
24+
uses: actions/github-script@v8
2525
with:
2626
script: |
2727
const { owner, repo } = context.repo;
@@ -82,12 +82,12 @@ jobs:
8282

8383
steps:
8484
- name: Checkout ${{ github.event.inputs.tag }}
85-
uses: actions/checkout@v3
85+
uses: actions/checkout@v5
8686
with:
8787
ref: ${{ github.event.inputs.tag }}
8888

8989
- name: Set up Python
90-
uses: actions/setup-python@v3
90+
uses: actions/setup-python@v6
9191
with:
9292
python-version: "3.x"
9393

@@ -104,7 +104,7 @@ jobs:
104104
mv dist/*.whl pkg/
105105
106106
- name: Upload Package
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v6
108108
with:
109109
name: scenedetect-dist
110110
path: |

.github/workflows/release-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
static:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Set up Python
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: '3.10'
1818
- name: Install dependencies
@@ -58,14 +58,14 @@ jobs:
5858
python-version: ['3.10', '3.13']
5959
runs-on: ${{ matrix.os }}
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- name: Checkout resources branch
6363
run: |
6464
git fetch --depth=1 origin refs/heads/resources:refs/remotes/origin/resources
6565
git checkout refs/remotes/origin/resources -- tests/resources/
6666
git reset
6767
- name: Set up Python ${{ matrix.python-version }}
68-
uses: actions/setup-python@v5
68+
uses: actions/setup-python@v6
6969
with:
7070
python-version: ${{ matrix.python-version }}
7171
- name: Install ffmpeg
@@ -82,14 +82,14 @@ jobs:
8282
needs: static
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- name: Checkout resources branch
8787
run: |
8888
git fetch --depth=1 origin refs/heads/resources:refs/remotes/origin/resources
8989
git checkout refs/remotes/origin/resources -- tests/resources/
9090
git reset
9191
- name: Set up Python
92-
uses: actions/setup-python@v5
92+
uses: actions/setup-python@v6
9393
with:
9494
python-version: '3.10'
9595
- name: Install ffmpeg

0 commit comments

Comments
 (0)