Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the github-actions group with 6 updates #1131

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the github-actions group with 6 updates:

Package From To
actions/checkout 3 4
astral-sh/setup-uv 3 5
CodSpeedHQ/action 2 3
uraimo/run-on-arch-action 2 3
wntrblm/nox 2024.03.02 2025.02.09
actions/download-artifact 3 4

Updates actions/checkout from 3 to 4

Release notes

Sourced from actions/checkout's releases.

v4.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v3...v4.0.0

v3.6.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v3.5.3...v3.6.0

v3.5.3

What's Changed

New Contributors

Full Changelog: actions/checkout@v3...v3.5.3

v3.5.2

What's Changed

Full Changelog: actions/checkout@v3.5.1...v3.5.2

v3.5.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

v4.1.5

v4.1.4

v4.1.3

v4.1.2

v4.1.1

v4.1.0

... (truncated)

Commits

Updates astral-sh/setup-uv from 3 to 5

Release notes

Sourced from astral-sh/setup-uv's releases.

v5.2.1 🌈 Support toml spec 1.0.0

v5.2.0 introduced TOML parsing using @​iarna/toml because we already found out in astral-sh/ruff-action that toml has missing features.

As it turns out @​iarna/toml also is not fully TOML spec (1.0.0) compliant.

We now use smol-toml

🐛 Bug fixes

v5.0.0 🎄 Merry Christmas - Help fastly and users by default

Changes

This christmans 🎄 release is a bit early bit still full of presents 🎁 Since we are changing some of the defaults this can lead to breaking changes, thus the major version increase.

Here are the highlights:

Default to enable-cache: true on GitHub hosted runners

Did you know that that Fastly, the company hosting PyPI, theoretically has to pay $12.5 million per month and so far have served more than 2.41 exabytes of data? image

This is why they asked us to turn on caching by default. After weighting the pros and cons we decided to automatically upload the cache to the GitHub Actions cache when running on GitHub hosted runners. You can still disable that with enable-cache: false.

I remember when I first got into actions and didn't understand all the magic. I was baffled that some actions did something behind the scenes to make everything faster. I hope with this change we help a lot of users who are don't want to or are afraid to understand what enable-cache does.

Add **/requirements*.txt to default cache-dependency-glob

If caching is enabled we automatically searched for a uv.lock file and when this changed we knew we had to refresh the cache. A lot of projects don't use this but rather the good old requirements.txt. We now automatically search for both uv.lockand requirements*.txt (this means also requirements-test.txt, requirements-dev.txt, ...) files. You can change this with cache-dependency-glob

Auto activate venv when python-version is set

Some workflows install packages on the fly. This automatically works when using a python version that is already present on the runner. But if uv installs the version, e.g. because it is a free-threaded version or an old one, it is a standalone-build and installing packages "into the system" is not possible.

We now automatically create a new virtual environment with uv venv and activate it for the rest of the workflow if python-version is used. This means you can now do

- name: Install uv
  uses: astral-sh/setup-uv@auto-environment
  with:
    python-version: 3.13t
- run: uv pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython

🚨 Breaking changes

... (truncated)

Commits

Updates CodSpeedHQ/action from 2 to 3

Release notes

Sourced from CodSpeedHQ/action's releases.

v3.0.0

What's Changed

Check the runner release notes for more details.

Full Changelog: CodSpeedHQ/action@v2...v3.0.0

v2.4.4

What's Changed

Full Changelog: CodSpeedHQ/action@v2.4.3...v2.4.4

v2.4.3

What's Changed

Check the runner release notes for more details.

Full Changelog: CodSpeedHQ/action@v2.4.2...v2.4.3

v2.4.2

What's Changed

Check the runner release notes for more details.

Full Changelog: CodSpeedHQ/action@v2.4.1...v2.4.2

v2.4.1

What's Changed

Check the runner release notes for more details.

Full Changelog: CodSpeedHQ/action@v2.4.0...v2.4.1

v2.4.0

What's Changed

Check the runner release notes for more details.

Full Changelog: CodSpeedHQ/action@v2.3.1...v2.4.0

... (truncated)

Changelog

Sourced from CodSpeedHQ/action's changelog.

[3.0.0] - 2024-07-26

[2.4.4] - 2024-07-26

  • chore: report that a new version is available

[2.4.3] - 2024-07-12

[2.4.2] - 2024-06-14

[2.4.1] - 2024-04-29

[2.4.0] - 2024-04-26

[2.3.1] - 2024-04-24

[2.3.0] - 2024-02-31

[2.2.1] - 2024-02-22

[2.2.0] - 2024-02-22

[2.1.1] - 2024-02-02

[2.0.3] - 2024-01-04

... (truncated)

Commits
  • 63ae602 Release v3.4.0 🚀
  • c08a237 chore: bump runner version to 3.4.0
  • df17059 feat: add GH_MATRIX and GH_STRATEGY env variables
  • 1015f4f Release v3.3.1 🚀
  • 8f308f2 chore: bump runner version to 3.3.1
  • da7c578 Release v3.3.0 🚀
  • 6c8e73a ci: drop tests for ubuntu 20.04 and add tests on arm
  • d09f65c chore: bump runner version to 3.3.0 (#122)
  • 513a196 Release v3.2.0 🚀
  • ece4029 chore: bump runner version to 3.2.0 (#117)
  • Additional commits viewable in compare view

Updates uraimo/run-on-arch-action from 2 to 3

Release notes

Sourced from uraimo/run-on-arch-action's releases.

3.0.0

This major release fixes #160 updating QEMU to 9.2.2, please update your workflows if sporadic segmentation faults start appearing while running your pipelines. Minor fixes and improvements are also contained.

Full Changelog: uraimo/run-on-arch-action@v2.8.1...v3.0.0

2.8.1

Fixed typo in Dockerfile.

Full Changelog: uraimo/run-on-arch-action@v2.8.0...v2.8.1

2.8.0

This release explicitly adds the --platform parameter for the default Dockerfiles that now requires it.

See #155, #154, #152.

Full Changelog: uraimo/run-on-arch-action@v2.7.2...v2.8.0

2.7.2

What's Changed

New Contributors

Full Changelog: uraimo/run-on-arch-action@v2.7.1...v2.7.2

2.7.1

Fix and reduce tests, remove Fedora from failing platforms.

Full Changelog: uraimo/run-on-arch-action@v2.7.0...v2.7.1

2.7.0

What's Changed

New Contributors

Full Changelog: uraimo/run-on-arch-action@v2.6.0...v2.7.0

2.6.0

What's Changed

New Contributors 🎉

Full Changelog: uraimo/run-on-arch-action@v.2.5.1...v2.6.0

... (truncated)

Commits

Updates wntrblm/nox from 2024.03.02 to 2025.02.09

Release notes

Sourced from wntrblm/nox's releases.

2025.02.09 💝

This release improves PEP 723 support, including adding dependencies to the noxfile itself ("plugins"). It adds the long-awaited "requires" option, allowing sessions to require other sessions. And it brings further improvements to the pyproject.toml support, including helpers for dependency-groups and Python version lists.

We'd like to thank the following folks who contributed to this release:

New features:

Bugfixes:

Bugfixes related to uv support:

Tox-to-nox script:

Improved noxfile validation:

... (truncated)

Changelog

Sourced from wntrblm/nox's changelog.

2025.02.09

This release improves PEP 723 support, including adding dependencies to the noxfile itself ("plugins"). It adds the long-awaited "requires" option, allowing sessions to require other sessions. And it brings further improvements to the pyproject.toml support, including helpers for dependency-groups and Python version lists.

We'd like to thank the following folks who contributed to this release:

New features:

Bugfixes:

Bugfixes related to uv support:

Tox-to-nox script:

Improved noxfile validation:

... (truncated)

Commits

Updates actions/download-artifact from 3 to 4

Release notes

Sourced from actions/download-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

ℹ️ However, this is a major update that includes breaking changes. Artifacts created with versions v3 and below are not compatible with the v4 actions. Uploads and downloads must use the same major actions versions. There are also key differences from previous versions that may require updates to your workflows.

For more information, please see:

  1. The changelog post.
  2. The README.
  3. The migration documentation.
  4. As well as the underlying npm package, @​actions/artifact documentation.

New Contributors

Full Changelog: actions/download-artifact@v3...v4.0.0

v3.0.2

v3.0.1

Commits
  • cc20338 Merge pull request #380 from actions/yacaovsnc/release_4_1_9
  • 1fc0fee Update artifact package to 2.2.2
  • 7fba951 Merge pull request #372 from andyfeller/patch-1
  • f9ceb77 Update MIGRATION.md
  • 533298b Merge pull request #370 from froblesmartin/patch-1
  • d06289e docs: small migration fix
  • d0ce8fd Merge pull request #354 from actions/Jcambass-patch-1
  • 1ce0d91 Add workflow file for publishing releases to immutable action package
  • fa0a91b Merge pull request #341 from actions/robherley/bump-pkgs
  • b54d088 Update @​actions/artifact version, bump dependencies
  • Additional commits viewable in compare view

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 the dependencies Pull requests that update a dependency file label Mar 3, 2025
Copy link

vercel bot commented Mar 3, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
robyn ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 10, 2025 11:37am

Bumps the github-actions group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `3` | `4` |
| [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `3` | `5` |
| [CodSpeedHQ/action](https://github.com/codspeedhq/action) | `2` | `3` |
| [uraimo/run-on-arch-action](https://github.com/uraimo/run-on-arch-action) | `2` | `3` |
| [wntrblm/nox](https://github.com/wntrblm/nox) | `2024.03.02` | `2025.02.09` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` |


Updates `actions/checkout` from 3 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

Updates `astral-sh/setup-uv` from 3 to 5
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@v3...v5)

Updates `CodSpeedHQ/action` from 2 to 3
- [Release notes](https://github.com/codspeedhq/action/releases)
- [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md)
- [Commits](CodSpeedHQ/action@v2...v3)

Updates `uraimo/run-on-arch-action` from 2 to 3
- [Release notes](https://github.com/uraimo/run-on-arch-action/releases)
- [Commits](uraimo/run-on-arch-action@v2...v3)

Updates `wntrblm/nox` from 2024.03.02 to 2025.02.09
- [Release notes](https://github.com/wntrblm/nox/releases)
- [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md)
- [Commits](wntrblm/nox@2024.03.02...2025.02.09)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: astral-sh/setup-uv
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: CodSpeedHQ/action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: uraimo/run-on-arch-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: wntrblm/nox
  dependency-type: direct:production
  dependency-group: github-actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/github_actions/github-actions-547f61730e branch from a22140f to 7514589 Compare March 10, 2025 11:36
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants