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

Update github actions to their latest versions #2746

Closed
wants to merge 4 commits into from

Conversation

psss
Copy link
Collaborator

@psss psss commented Mar 8, 2024

The following warning started to appear in the check results:

Node.js 16 actions are deprecated. Please update the following
actions to use Node.js 20. For more information see:
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/

The following warning started to appear in the check results:

    Node.js 16 actions are deprecated. Please update the following
    actions to use Node.js 20. For more information see:
    https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
@psss psss added the process label Mar 8, 2024
@LecrisUT
Copy link
Contributor

LecrisUT commented Mar 8, 2024

If you wish to add something like dependabot, I can recommend using renovatebot instead. It does not polute the MRs and it can group across infrastructure, e.g. pre-commit + github actions. Here is a starter configuration:

{
	"$schema": "https://docs.renovatebot.com/renovate-schema.json",
	"packageRules": [
		{
			"groupName": "CI and devDependencies",
			"matchManagers": ["github-actions", "pre-commit"]
		}
	],
	"separateMajorMinor": false,
	"extends": [
		"config:recommended",
		"schedule:weekly",
		":enablePreCommit",
		":semanticCommitTypeAll(chore)"
	]
}

- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
Copy link
Contributor

Choose a reason for hiding this comment

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

I've just hit an issue on #2819 where this would have been useful (tomli is not required for codespell for python >= 3.11)

@martinhoyer
Copy link
Collaborator

This seems to have been updated in a different PR.

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.

3 participants