Skip to content

Commit 61bc984

Browse files
authored
Merge pull request PyDMD#525 from PyDMD/bump-setup-ffmpeg-3.1
Bump setup-ffmpeg to 3.1
2 parents 9fa1e5e + 1cf9f45 commit 61bc984

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/testing_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
mv SegTrackv2 tutorials/tutorial12
148148
149149
- name: Setup FFmpeg
150-
uses: FedericoCarboni/setup-ffmpeg@v2
150+
uses: FedericoCarboni/setup-ffmpeg@v3.1
151151

152152
- name: Check tutorial references
153153
run: |

utils/info2json.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
import json
22
from argparse import ArgumentParser
33

4+
# TODO: Monitor https://github.com/federicocarboni/setup-ffmpeg/issues/21
5+
macos_version = "macos-13"
6+
47
testing_matrix_ghact = {
58
"python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"],
6-
"os": ["windows-latest", "macos-latest", "ubuntu-latest"],
9+
"os": ["windows-latest", macos_version, "ubuntu-latest"],
710
"exclude": [{"os": "windows-latest", "python-version": "3.11"}],
811
}
912

1013
tutorial_testing_matrix_ghact = {
1114
"python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"],
12-
"os": ["macos-latest", "ubuntu-latest"],
15+
"os": [macos_version, "ubuntu-latest"],
1316
}
1417

1518
deploy_matrix_ghact = {"python-version": ["3.8"], "os": ["ubuntu-latest"]}

0 commit comments

Comments
 (0)