From c756c35268bec24785ef9451cbdf3b7fae569915 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Fri, 21 Aug 2026 22:10:09 -0400 Subject: [PATCH 1/7] chore: Add myself to assignees for Dependabot PRs (#5972) So I get notified about deps updates. https://docs.github.com/en/code-security/tutorials/secure-your-dependencies/customizing-dependabot-prs#automatically-adding-assignees --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8891a385e..e8dc55416 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,11 +4,17 @@ updates: directory: "/docker" schedule: interval: "weekly" + assignees: + - "Fijxu" - package-ecosystem: github-actions directory: / schedule: interval: "weekly" + assignees: + - "Fijxu" - package-ecosystem: "nix" directory: /nix schedule: interval: "weekly" + assignees: + - "Fijxu" From 9c8c37ea8649660634220711bb4a1ab3b473c070 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 22:12:28 -0400 Subject: [PATCH 2/7] chore(deps): bump actions/checkout from 6 to 7 (#5782) Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-nightly-container.yml | 2 +- .github/workflows/build-stable-container.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-nightly-container.yml b/.github/workflows/build-nightly-container.yml index c7b18acae..fe5e43b09 100644 --- a/.github/workflows/build-nightly-container.yml +++ b/.github/workflows/build-nightly-container.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 diff --git a/.github/workflows/build-stable-container.yml b/.github/workflows/build-stable-container.yml index 2f3141308..1535974e7 100644 --- a/.github/workflows/build-stable-container.yml +++ b/.github/workflows/build-stable-container.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af7e7266c..73e3fc8d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: stable: false steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true @@ -103,7 +103,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build Docker run: docker compose build @@ -131,7 +131,7 @@ jobs: continue-on-error: true steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true From eff609d0cdbd3b7ef7114afee9ba8e6eaa30cd8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 22:12:37 -0400 Subject: [PATCH 3/7] chore(deps): bump nixpkgs from `0e251e2` to `ec2d622` in /nix (#5968) Bumps [nixpkgs](https://github.com/NixOS/nixpkgs) from `0e251e2` to `ec2d622`. - [Commits](https://github.com/NixOS/nixpkgs/compare/0e251e24a4f24e036a084b6b4b2d2491af4167f4...ec2d622de0773551768cf98f3fc50cbcc003b9c5) --- updated-dependencies: - dependency-name: nixpkgs dependency-version: ec2d622de0773551768cf98f3fc50cbcc003b9c5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- nix/flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/flake.lock b/nix/flake.lock index 22ce7bec2..e35cb6a48 100644 --- a/nix/flake.lock +++ b/nix/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1786599213, - "narHash": "sha256-yNJd40f11EzXBjSByCB7IPpeFFAdeoSKKM67dGkfFoU=", + "lastModified": 1787135253, + "narHash": "sha256-RD2kNWCG+Bjo6h+JVjWVNntZs2GtRoeY2xHjts/FNkA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0e251e24a4f24e036a084b6b4b2d2491af4167f4", + "rev": "ffb3c9b700e759be2ef13237c9d8f953b32a1e46", "type": "github" }, "original": { From 4daa1428447750dbd85cf4d4ba3f2bd75b64da7d Mon Sep 17 00:00:00 2001 From: Fijxu Date: Sun, 23 Aug 2026 14:33:52 -0400 Subject: [PATCH 4/7] chore: update nix development files in paths-ignore for github workflows --- .github/workflows/build-nightly-container.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-nightly-container.yml b/.github/workflows/build-nightly-container.yml index fe5e43b09..701f1caf7 100644 --- a/.github/workflows/build-nightly-container.yml +++ b/.github/workflows/build-nightly-container.yml @@ -15,8 +15,8 @@ on: - .github/ISSUE_TEMPLATE/* - kubernetes/** # Nix development files that are not used here. - - "*.nix" - - flake.lock + - .envrc + - "nix/**" jobs: release: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73e3fc8d8..8449ab168 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,8 @@ on: - kubernetes/** # Nix development files that are not used here. - - "*.nix" - - flake.flake + - .envrc + - "nix/**" jobs: build: From 34173a3d84c5e23cd642869fe71045a896363f09 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Sun, 23 Aug 2026 16:33:31 -0400 Subject: [PATCH 5/7] ci: use less specific version for int128/docker-manifest-create-action (use @v2 instead of @v2.y.x) --- .github/workflows/build-nightly-container.yml | 2 +- .github/workflows/build-stable-container.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-nightly-container.yml b/.github/workflows/build-nightly-container.yml index 701f1caf7..0c3c31907 100644 --- a/.github/workflows/build-nightly-container.yml +++ b/.github/workflows/build-nightly-container.yml @@ -89,7 +89,7 @@ jobs: # https://github.com/marketplace/actions/docker-manifest-create-action - name: Create and push manifest - uses: int128/docker-manifest-create-action@v2.26.0 + uses: int128/docker-manifest-create-action@v2 with: push: true tags: quay.io/invidious/invidious:master diff --git a/.github/workflows/build-stable-container.yml b/.github/workflows/build-stable-container.yml index 1535974e7..ad154aab1 100644 --- a/.github/workflows/build-stable-container.yml +++ b/.github/workflows/build-stable-container.yml @@ -78,7 +78,7 @@ jobs: # https://github.com/marketplace/actions/docker-manifest-create-action - name: Create and push manifest - uses: int128/docker-manifest-create-action@v2.26.0 + uses: int128/docker-manifest-create-action@v2 with: push: true tags: quay.io/invidious/invidious:latest From a62501518749d80b6215936b71fc730e97c2d51e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 17:50:22 -0400 Subject: [PATCH 6/7] chore(deps): bump nixpkgs from `ffb3c9b` to `56c02bc` in /nix (#5997) Bumps [nixpkgs](https://github.com/NixOS/nixpkgs) from `ffb3c9b` to `56c02bc`. - [Commits](https://github.com/NixOS/nixpkgs/compare/ffb3c9b700e759be2ef13237c9d8f953b32a1e46...56c02bc00adcf003215cc4bd996d6efaf4cff188) --- updated-dependencies: - dependency-name: nixpkgs dependency-version: 56c02bc00adcf003215cc4bd996d6efaf4cff188 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- nix/flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/flake.lock b/nix/flake.lock index e35cb6a48..effd00b37 100644 --- a/nix/flake.lock +++ b/nix/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1787135253, - "narHash": "sha256-RD2kNWCG+Bjo6h+JVjWVNntZs2GtRoeY2xHjts/FNkA=", + "lastModified": 1787498568, + "narHash": "sha256-9i/VTdusq/+NM/tz+J1Re+ojkMB8MBf0QshnYfzHz30=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ffb3c9b700e759be2ef13237c9d8f953b32a1e46", + "rev": "56c02bc00adcf003215cc4bd996d6efaf4cff188", "type": "github" }, "original": { From b3a3f3a6df47d090c22c2f16bb8128688020538d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 17:50:32 -0400 Subject: [PATCH 7/7] chore(deps): bump actions/checkout from 6 to 7 (#5996) Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index a53473784..5740bba09 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -38,7 +38,7 @@ jobs: prepare-release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: master fetch-depth: 0