Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 6, 2025

Bumps the github_action-dependencies group with 4 updates in the / directory: calibreapp/image-actions, actions/setup-python, actions/setup-node and actions/stale.

Updates calibreapp/image-actions from 1.1.0 to 1.4.0

Release notes

Sourced from calibreapp/image-actions's releases.

1.4.0: AVIF

In this release:

  • Process & compress AVIF images

[!NOTE] Add avif extension to the paths stanza in your actions configuration yml:

on:
  pull_request:
    paths:
      - '**.jpg'
      - '**.jpeg'
      - '**.png'
      - '**.webp'
      - '**.avif'

If you have AVIF images in your repository, they will be processed by image-actions.

1.3.0

In this release:

✨ Only optimise new or changed images (#339)

  • When your PR adds or updates images, image-actions will run on them
  • When run manually, scheduled, or in the event of an error all images will be processed (uses pre 1.3.0 behavior)

[!IMPORTANT]
When updating from versions prior to 1.2.0, please update configuration:

      - name: Compress Images
        uses: calibreapp/image-actions@main
        with:
          # The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action can’t update Pull Requests initiated from forked repositories.
          # See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions
-         githubToken: ${{ secrets.GITHUB_TOKEN }}
+         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Other changes:

  • Updated README with updated config
  • Removed long-deprecated configuration method

Full Changelog: calibreapp/image-actions@1.2.0...1.3.0

... (truncated)

Commits
  • f72c7c4 Merge pull request #347 from calibreapp/avif
  • 565df05 Remove dist directory handling
  • b63aaf1 Add support for AVIF
  • 3eb3192 Merge pull request #346 from calibreapp/dependabot/npm_and_yarn/typescript-es...
  • 960b27b Bump @​typescript-eslint/eslint-plugin from 8.40.0 to 8.41.0
  • a755de1 Merge pull request #343 from calibreapp/dependabot/npm_and_yarn/typescript-es...
  • 90c64b5 Merge pull request #345 from calibreapp/dependabot/github_actions/actions/che...
  • 22eab5f Merge pull request #344 from calibreapp/dependabot/npm_and_yarn/types/sharp-0...
  • 6d6e7ba Bump actions/checkout from 4 to 5
  • 3d0902f Bump @​types/sharp from 0.31.1 to 0.32.0
  • Additional commits viewable in compare view

Updates actions/setup-python from 5.6.0 to 6.0.0

Release notes

Sourced from actions/setup-python's releases.

v6.0.0

What's Changed

Breaking Changes

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Enhancements:

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-python@v5...v6.0.0

Commits
  • e797f83 Upgrade to node 24 (#1164)
  • 3d1e2d2 Revert "Enhance cache-dependency-path handling to support files outside the w...
  • 65b0712 Clarify pythonLocation behavior for PyPy and GraalPy in environment variables...
  • 5b668cf Bump actions/checkout from 4 to 5 (#1181)
  • f62a0e2 Change missing cache directory error to warning (#1182)
  • 9322b3c Upgrade setuptools to 78.1.1 to fix path traversal vulnerability in PackageIn...
  • fbeb884 Bump form-data to fix critical vulnerabilities #182 & #183 (#1163)
  • 03bb615 Bump idna from 2.9 to 3.7 in /tests/data (#843)
  • 36da51d Add version parsing from Pipfile (#1067)
  • 3c6f142 update documentation (#1156)
  • Additional commits viewable in compare view

Updates actions/setup-node from 4.4.0 to 5.0.0

Release notes

Sourced from actions/setup-node's releases.

v5.0.0

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless. To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-node@v4...v5.0.0

Commits

Updates actions/stale from 9.1.0 to 10.0.0

Release notes

Sourced from actions/stale's releases.

v10.0.0

What's Changed

Breaking Changes

Enhancement

Dependency Upgrades

Documentation changes

New Contributors

Full Changelog: actions/stale@v9...v10.0.0

Changelog

Sourced from actions/stale's changelog.

Changelog

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update Github_actions code labels Sep 6, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 6, 2025 10:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update Github_actions code labels Sep 6, 2025
@netlify
Copy link

netlify bot commented Sep 6, 2025

Deploy Preview for pihole-docs ready!

Name Link
🔨 Latest commit 32949ec
🔍 Latest deploy log https://app.netlify.com/projects/pihole-docs/deploys/68ea36ff52d0300008de5559
😎 Deploy Preview https://deploy-preview-1283--pihole-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@dependabot dependabot bot force-pushed the dependabot/github_actions/master/github_action-dependencies-00e2e824ad branch from 97878d5 to 916d4da Compare September 13, 2025 10:03
@dependabot dependabot bot force-pushed the dependabot/github_actions/master/github_action-dependencies-00e2e824ad branch from 916d4da to 014b82a Compare September 27, 2025 10:02
…pdates

Bumps the github_action-dependencies group with 4 updates in the / directory: [calibreapp/image-actions](https://github.com/calibreapp/image-actions), [actions/setup-python](https://github.com/actions/setup-python), [actions/setup-node](https://github.com/actions/setup-node) and [actions/stale](https://github.com/actions/stale).


Updates `calibreapp/image-actions` from 1.1.0 to 1.4.0
- [Release notes](https://github.com/calibreapp/image-actions/releases)
- [Commits](calibreapp/image-actions@1.1.0...1.4.0)

Updates `actions/setup-python` from 5.6.0 to 6.0.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.6.0...v6.0.0)

Updates `actions/setup-node` from 4.4.0 to 5.0.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4.4.0...v5.0.0)

Updates `actions/stale` from 9.1.0 to 10.0.0
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v9.1.0...v10.0.0)

---
updated-dependencies:
- dependency-name: calibreapp/image-actions
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github_action-dependencies
- dependency-name: actions/setup-python
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github_action-dependencies
- dependency-name: actions/setup-node
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github_action-dependencies
- dependency-name: actions/stale
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github_action-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/master/github_action-dependencies-00e2e824ad branch from 014b82a to daa6adc Compare October 11, 2025 10:02
Signed-off-by: yubiuser <github@yubiuser.dev>
Signed-off-by: yubiuser <github@yubiuser.dev>
Signed-off-by: yubiuser <github@yubiuser.dev>
Copy link
Member

@yubiuser yubiuser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A lot up dependencies upgraded their dependencies. I took the chance an upgraded to node 24 and python 3.14. Builds an deploys smooth

@yubiuser yubiuser merged commit 9fe0f2d into master Oct 11, 2025
11 checks passed
@yubiuser yubiuser deleted the dependabot/github_actions/master/github_action-dependencies-00e2e824ad branch October 11, 2025 12:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update Github_actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants