Skip to content

Commit 2e0c627

Browse files
8.0.3 8.1.2 (#462)
* Bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * 8.0.3 8.1.2 * on changes only --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f5c3dd1 commit 2e0c627

12 files changed

Lines changed: 55 additions & 50 deletions

File tree

.github/workflows/build.yml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
lint:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535
- uses: actions/setup-python@v6
3636
with:
3737
python-version: "3.14"
3838
- run: pip install pre-commit packaging
39-
- uses: actions/cache@v5
39+
- uses: actions/cache@v6
4040
with:
4141
path: ~/.cache/pre-commit
4242
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -48,7 +48,7 @@ jobs:
4848
build: ${{ steps.matrix.outputs.build }}
4949
manifest: ${{ steps.matrix.outputs.manifest }}
5050
steps:
51-
- uses: actions/checkout@v6
51+
- uses: actions/checkout@v7
5252
- id: matrix
5353
run: |
5454
echo "build=$(jq -c '.build' docker-images/github-actions-matrix.json)" >> "$GITHUB_OUTPUT"
@@ -63,7 +63,7 @@ jobs:
6363
matrix:
6464
include: ${{ fromJson(needs.generate-matrix.outputs.build) }}
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v7
6767
- uses: docker/setup-buildx-action@v4
6868
- uses: docker/login-action@v4
6969
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
@@ -163,18 +163,11 @@ jobs:
163163
docker buildx imagetools create -t "${tag}" ${GHCR_SOURCES}
164164
done
165165
166-
deploy-docs:
167-
if: github.event_name != 'pull_request'
166+
build-docs:
168167
needs: [lint]
169168
runs-on: ubuntu-latest
170-
permissions:
171-
pages: write
172-
id-token: write
173-
environment:
174-
name: github-pages
175-
url: ${{ steps.deployment.outputs.page_url }}
176169
steps:
177-
- uses: actions/checkout@v6
170+
- uses: actions/checkout@v7
178171
- name: Sync README and CONTRIBUTING to docs
179172
run: |
180173
mkdir -p docs
@@ -188,6 +181,18 @@ jobs:
188181
source: ./docs
189182
destination: ./_site
190183
- uses: actions/upload-pages-artifact@v5
184+
185+
deploy-docs:
186+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
187+
needs: [build-docs]
188+
runs-on: ubuntu-latest
189+
permissions:
190+
pages: write
191+
id-token: write
192+
environment:
193+
name: github-pages
194+
url: ${{ steps.deployment.outputs.page_url }}
195+
steps:
191196
- name: Deploy to GitHub Pages
192197
id: deployment
193198
uses: actions/deploy-pages@v5

.github/workflows/jekyll-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v7
2323
- name: Sync README and CONTRIBUTING to docs
2424
run: |
2525
mkdir -p docs

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos: # pre-commit autoupdate
3434
- id: isort
3535

3636
- repo: https://github.com/psf/black
37-
rev: 26.3.1
37+
rev: 26.5.1
3838
hooks:
3939
- id: black
4040
language_version: python3

docker-images/8.0/alpine320/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM alpine:3.20 AS builder
99
RUN apk add --no-cache --update libgcc libstdc++ ca-certificates openssl expat git less tree file vim bash
1010

1111

12-
ENV FFMPEG_VERSION=8.0.2
12+
ENV FFMPEG_VERSION=8.0.3
1313

1414
ENV MAKEFLAGS="-j4"
1515
ENV PKG_CONFIG_PATH="/opt/ffmpeg/share/pkgconfig:/opt/ffmpeg/lib/pkgconfig:/opt/ffmpeg/lib64/pkgconfig:/opt/ffmpeg/lib/x86_64-linux-gnu/pkgconfig:/opt/ffmpeg/lib/aarch64-linux-gnu/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig"

docker-images/8.0/nvidia2404/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
1212
ENV DEBIAN_FRONTEND=noninteractive
1313

1414

15-
ENV FFMPEG_VERSION=8.0.2
15+
ENV FFMPEG_VERSION=8.0.3
1616

1717
ENV NVIDIA_HEADERS_VERSION=11.1.5.3
1818

docker-images/8.0/scratch320/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apk add --no-cache --update libgcc libstdc++ ca-certificates openssl
1010
# apt-get install -yq --no-install-recommends curl jq python3 python3-requests less tree file vim && \
1111

1212

13-
ENV FFMPEG_VERSION=8.0.2
13+
ENV FFMPEG_VERSION=8.0.3
1414

1515
ENV MAKEFLAGS="-j4"
1616
ENV PKG_CONFIG_PATH="/opt/ffmpeg/share/pkgconfig:/opt/ffmpeg/lib/pkgconfig:/opt/ffmpeg/lib64/pkgconfig:/opt/ffmpeg/lib/x86_64-linux-gnu/pkgconfig:/opt/ffmpeg/lib/aarch64-linux-gnu/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig"

docker-images/8.0/ubuntu2404-edge/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY build_source.sh /tmp/workdir
1616
COPY install_ffmpeg.sh /tmp/workdir
1717

1818

19-
ENV FFMPEG_VERSION=8.0.2
19+
ENV FFMPEG_VERSION=8.0.3
2020

2121
# fribidi
2222
ARG FRIBIDI_PKGS="libfribidi-dev libfribidi0"

docker-images/8.0/ubuntu2404/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
FROM ubuntu:24.04 AS builder
1010

1111

12-
ENV FFMPEG_VERSION=8.0.2
12+
ENV FFMPEG_VERSION=8.0.3
1313

1414
## opencore-amr - https://sourceforge.net/projects/opencore-amr/
1515
## x264 - http://www.videolan.org/developers/x264.html

docker-images/8.0/vaapi2404/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FROM ubuntu:24.04 AS builder
1111

1212

1313

14-
ENV FFMPEG_VERSION=8.0.2
14+
ENV FFMPEG_VERSION=8.0.3
1515

1616
## opencore-amr - https://sourceforge.net/projects/opencore-amr/
1717
## x264 - http://www.videolan.org/developers/x264.html

docker-images/8.1/ubuntu2404/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
FROM ubuntu:24.04 AS builder
1010

1111

12-
ENV FFMPEG_VERSION=8.1.1
12+
ENV FFMPEG_VERSION=8.1.2
1313

1414
## opencore-amr - https://sourceforge.net/projects/opencore-amr/
1515
## x264 - http://www.videolan.org/developers/x264.html

0 commit comments

Comments
 (0)