Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
PKG_CONFIG_PATH: /opt/homebrew/opt/ffmpeg@${{ matrix.ffmpeg_version }}/lib/pkgconfig

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install dependencies
run: brew install ffmpeg@${{ matrix.ffmpeg_version }}
- name: Install Rust stable with clippy and rustfmt
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
FFMPEG_INSTALL_PATH: "C:/ffmpeg"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set libclang path
run: |
$VCINSTALLDIR = $(& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath)
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
RUSTFLAGS: "-Dwarnings -Aunknown-lints"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Download FFmpeg
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Generate release notes
run: |
cat >release_notes.md <<EOF
Expand Down
Loading