Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- arch: x86_64
wine: wine64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Get time
id: get_time
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
run: |
cat ./mingw_build/meson-logs/testlog.txt

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: mpv-${{ env.TARGET }}
path: mpv-git-*.zip
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Get time
id: get_time
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
run: |
cat ./build/meson-logs/testlog.txt

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: mpv-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
swift: "-target arm64-apple-macosx10.15"
target: "10.15"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Remove stray upstream python binary symlinks under /usr/local
run: |
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
run: |
cat ./build/meson-logs/testlog.txt

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: ${{ matrix.arch != 'test' }}
with:
name: mpv-${{ matrix.os }}${{ matrix.arch != '' && format('-{0}', matrix.arch) || '' }}
Expand All @@ -325,7 +325,7 @@ jobs:
ld: "lld"
args: "-Db_lto=true -Db_lto_mode=thin"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build with meson
id: build
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
CC: "clang"
CXX: "clang++"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build with meson
id: build
Expand All @@ -378,7 +378,7 @@ jobs:
# used features to test build compatibility. Musl is a nice bonus as well
image: alpine:3.19
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install dependencies
run: |
apk update
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
timeout-minutes: 15 # avoid any weirdness with the VM
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Test in OpenBSD VM
uses: cross-platform-actions/[email protected]
with:
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
timeout-minutes: 15 # avoid any weirdness with the VM
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Test in FreeBSD VM
uses: cross-platform-actions/[email protected]
with:
Expand Down Expand Up @@ -545,7 +545,7 @@ jobs:
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.sys }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
check-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Docs
run: |
sudo apt-get install --no-install-recommends -y python3-docutils rst2pdf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
report-timeouts: true
output-sarif: true
- name: Upload Crash
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && steps.build.outcome == 'success'
with:
name: ${{ matrix.sanitizer }}-artifacts
path: ./out/artifacts
- name: Upload Sarif
if: always() && steps.build.outcome == 'success'
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: cifuzz-sarif/results.sarif
checkout_path: cifuzz-sarif
14 changes: 7 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
commit-msg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 50

Expand All @@ -24,20 +24,20 @@ jobs:
swift:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: norio-nomura/[email protected]

lua:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: lunarmodules/luacheck@v1

ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Check
id: check
uses: astral-sh/ruff-action@v3
Expand All @@ -50,7 +50,7 @@ jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: python/mypy@master
with:
install_project_dependencies: no
Expand All @@ -60,12 +60,12 @@ jobs:
editorconfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: editorconfig-checker/action-editorconfig-checker@main
- run: editorconfig-checker -config .editorconfig-checker.json

pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pre-commit/[email protected]