Skip to content

deps: update github-actions - #251

Open
kjoremiljo-renovate[bot] wants to merge 1 commit into
mainfrom
ok-renovate/github-actions
Open

deps: update github-actions#251
kjoremiljo-renovate[bot] wants to merge 1 commit into
mainfrom
ok-renovate/github-actions

Conversation

@kjoremiljo-renovate

@kjoremiljo-renovate kjoremiljo-renovate Bot commented Apr 24, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending
actions/cache action major v5.1.0v6.1.0
actions/checkout action major v6.0.2v7.0.1
actions/checkout action major v5.0.0v7.0.1
actions/create-github-app-token action minor v3.1.1v3.2.0
actions/github-script action major v8.0.0v9.0.0
astral-sh/setup-uv action major v8.0.0v9.0.0
astral-sh/setup-uv action major v7.6.0v9.0.0
astral-sh/setup-uv action major v7.1.2v9.0.0
astral-sh/setup-uv action major v6v9.0.0
aws-actions/amazon-ecr-login action minor v2.0.1v2.1.6
aws-actions/amazon-ecs-deploy-task-definition action minor v2.3.4v2.6.3
aws-actions/configure-aws-credentials action minor v6.1.0v6.2.3
aws-actions/configure-aws-credentials action major v4.3.1v6.2.3
crazy-max/ghaction-import-gpg action major v6.3.0v7.0.0
dorny/paths-filter action patch v4.0.1v4.0.2 v4.0.3
googleapis/release-please-action action major v4.2.0v5.0.0
hashicorp/setup-terraform action patch v4.0.0v4.0.1
motoserver/moto service minor 5.1.225.2.2
peter-evans/create-pull-request action major v7.0.8v8.1.1

Release Notes

actions/cache (actions/cache)

v6.1.0

Compare Source

What's Changed

Full Changelog: actions/cache@v6...v6.1.0

v6.0.0

Compare Source

What's Changed

Full Changelog: actions/cache@v5...v6.0.0

actions/checkout (actions/checkout)

v7.0.1

Compare Source

v7.0.0

Compare Source

  • Block checking out fork PR for pull_request_target and workflow_run by @​aiqiaoy in #​2454
  • Various dependency updates

v6.1.0

Compare Source

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

Compare Source

actions/create-github-app-token (actions/create-github-app-token)

v3.2.0

Compare Source

Features
Bug Fixes
actions/github-script (actions/github-script)

v9.0.0

Compare Source

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@​actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@​actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@​actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.
What's Changed
New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

astral-sh/setup-uv (astral-sh/setup-uv)

v9.0.0: 🌈 Change prune-cache default to false

Compare Source

Changes

This release disables the default cache cache pruning to ease the load on the PyPi infrastructure.
Since users might experience more GitHub Actions cache usage which might result in higher costs this is marked as a breaking change. To read more on why we did this (now) you can read the detailed analysis and reasoning in #​967

Besides this big breaking change we also have a small bugfix while building caches for linux distributions that behave a big different than the "big ones" and a speed up in version resolution by only reading the version manifest until a matching version is found saving runtime and network bandwith.

🚨 Breaking changes
🐛 Bug fixes
  • fix: fall back to distribution ID when os-release has no version field @​cxzhong (#​961)
🚀 Enhancements
🧰 Maintenance
📚 Documentation
⬆️ Dependency updates

v8.3.2: 🌈 update known checksums for 0.11.28

Compare Source

Changes

Just a maintenance release

🧰 Maintenance
📚 Documentation
⬆️ Dependency updates

v8.3.1: 🌈 update known checksums for 0.11.27

Compare Source

Changes

Just a maintenance release

🧰 Maintenance
📚 Documentation

v8.3.0: 🌈 Support uv.lock as a version-file source

Compare Source

Changes

Thanks to @​somaz94 you can now use the pinned version of uv itself in uv.lock. It gets picked up automatically.
If you have pinned another version of uv in your uv.lock you can use the inputs version or version-source to override this.

🐛 Bug fixes
🚀 Enhancements
🧰 Maintenance
📚 Documentation
⬆️ Dependency updates

v8.2.0: 🌈 New inputs quiet and download-from-astral-mirror

Compare Source

Changes

This release brings two new inputs and a few bug fixes.

New inputs

Lets talk about the new inputs first.

quiet

Pretty simple. It turns of all info loggings. Useful if you use this in a composite action and are not interested in all the details.
In the upcoming releases we will add log groups to fully implement support for "less noise"

[!NOTE]
Warnings and errors are always logged.

download-from-astral-mirror

In some cases you may want to directly use the fallback of checking for available versions and downloading releases from GitHub instead of using the astral.sh mirror. Setting download-from-astral-mirror: false allows you to do that.

Bugfixes

When using the astral.sh mirror to query available versions and download releases (done by default) we now stop sending the GitHub token in the header. The mirror never looked at it but we shouldn't be handing out that data even if it is just a short lived token.
All other bugfixes try to limit the impact of failed GitHub queries due to retries and other faults.

We couldn't pinpoint all rootcauses yet but added more logging for error cases to track them down.

🐛 Bug fixes
🚀 Enhancements
🧰 Maintenance
⬆️ Dependency updates

v8.1.0: 🌈 New input no-project

Compare Source

Changes

This add the a new boolean input no-project.
It only makes sense to use in combination with activate-environment: true and will append --no project to the uv venv call. This is for example useful if you have a pyproject.toml file with parts unparseable by uv

🚀 Enhancements
🧰 Maintenance
📚 Documentation
⬆️ Dependency updates
aws-actions/amazon-ecr-login (aws-actions/amazon-ecr-login)

v2.1.6

Compare Source

See the changelog for details about the changes included in this release.

v2.1.5

Compare Source

See the changelog for details about the changes included in this release.

v2.1.4

Compare Source

See the changelog for details about the changes included in this release.

v2.1.3

Compare Source

See the changelog for details about the changes included in this release.

v2.1.2

Compare Source

See the changelog for details about the changes included in this release.

v2.1.1

Compare Source

See the changelog for details about the changes included in this release.

v2.1.0

Compare Source

See the changelog for details about the changes included in this release.

v2.0.2

Compare Source

Features
2.0.2 (2026-03-13)
Bug Fixes
2.0.1 (2023-10-02)
aws-actions/amazon-ecs-deploy-task-definition (aws-actions/amazon-ecs-deploy-task-definition)

v2.6.3

Compare Source

See the changelog for details about the changes included in this release.

v2.6.2

Compare Source

See the changelog for details about the changes included in this release.

v2.6.1

Compare Source

See the changelog for details about the changes included in this release.

v2.6.0

Compare Source

See the changelog for details about the changes included in this release.

v2.5.1

Compare Source

Features
  • Add support for maxAttempts to allow retrying after failure (#​750) (ede1821)
2.5.1 (2025-12-18)

v2.5.0

Compare Source

Features
  • Add support for maxAttempts to allow retrying after failure (#​750) (ede1821)
2.5.1 (2025-12-18)

v2.4.0

Compare Source

See the changelog for details about the changes included in this release.

aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)

v6.2.3

Compare Source

Bug Fixes

v6.2.2

Compare Source

Miscellaneous Chores

v6.2.2

Compare Source

Miscellaneous Chores

v6.2.1

Compare Source

Bug Fixes

v6.2.0

Compare Source

Features
Bug Fixes

v6.1.3

Compare Source

Bug Fixes
  • fix: allow kubelet token symlink in #​1805

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

What's Changed

Full Changelog: aws-actions/configure-aws-credentials@v6...v6.1.1

crazy-max/ghaction-import-gpg (crazy-max/ghaction-import-gpg)

v7.0.0

Compare Source

Full Changelog: crazy-max/ghaction-import-gpg@v6.3.0...v7.0.0

dorny/paths-filter (dorny/paths-filter)

v4.0.2

Compare Source

googleapis/release-please-action (googleapis/release-please-action)

v5.0.0

Compare Source

⚠ BREAKING CHANGES
Features
Bug Fixes

v4.4.1

Compare Source

Bug Fixes

v4.4.0

Compare Source

Features
  • add ability to select versioning-strategy and release-as (#​1121) (ee0f5ba)
Bug Fixes
  • changelog-host parameter ignored when using manifest configuration (#​1151) (535c413)
  • bump mocha from 11.7.1 to 11.7.2 in the npm_and_yarn group across 1 directory (#​1149) (3612a99)
  • bump release-please from 17.1.2 to 17.1.3 (#​1158) (66fbfe9)

v4.3.0

Compare Source

Features
  • deps: update release-please to 17.1.2 (f07192c)
hashicorp/setup-terraform (hashicorp/setup-terraform)

v4.0.1

Compare Source

BUG FIXES:

peter-evans/create-pull-request (peter-evans/create-pull-request)

v8.1.1: Create Pull Request v8.1.1

Compare Source

What's Changed

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Oslo)

  • Branch creation
    • Monday through Friday (* * * * 1-5)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box


ℹ️ Renovate runs on an hourly schedule, but you can manually trigger an immediate run by starting 👉 this workflow 👈

@kjoremiljo-renovate
kjoremiljo-renovate Bot requested a review from a team as a code owner April 24, 2026 08:41
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch from 3e6162b to 820070d Compare April 24, 2026 08:57
@kjoremiljo-renovate kjoremiljo-renovate Bot changed the title chore: update github-actions deps: update github-actions Apr 24, 2026
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 5 times, most recently from 531fc45 to 1760bdf Compare April 30, 2026 08:55
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 4 times, most recently from 0aed92f to d99cb21 Compare May 13, 2026 20:41
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 4 times, most recently from eaa05fe to 5a4a9cc Compare May 19, 2026 23:32
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 4 times, most recently from 7581b21 to e226cd3 Compare June 9, 2026 15:24
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 3 times, most recently from e659b42 to a730a27 Compare June 17, 2026 03:19
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 3 times, most recently from d5fa959 to 0473d17 Compare June 30, 2026 20:46
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 3 times, most recently from d59153c to 3540c5c Compare July 9, 2026 18:43
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch from 3540c5c to fb7fa6f Compare July 13, 2026 00:47
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 3 times, most recently from cbf92ff to 1061e3e Compare July 15, 2026 09:43
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch 3 times, most recently from b740fda to a2a2615 Compare July 28, 2026 15:53
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch from a2a2615 to db10fc8 Compare July 29, 2026 19:35
@kjoremiljo-renovate
kjoremiljo-renovate Bot force-pushed the ok-renovate/github-actions branch from db10fc8 to 593ed9f Compare August 5, 2026 07:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants