-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Update GitHub Actions versions #2389
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
Conversation
@@ -31,9 +31,8 @@ jobs: | |||
name: Code linters | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v2 | |||
- name: install python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@akx Why did you remove the name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not all of the actions/setup-python
steps in the YAML files had a name beforehand, anyway.
I see no actual value in a longer YAML file with the only visible change being "install python" being shown instead of "Run actions/setup-python@v4" in logs.
@@ -55,9 +54,8 @@ jobs: | |||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |||
name: Python ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.connection-type}} tests | |||
steps: | |||
- uses: actions/checkout@v2 | |||
- name: install python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
@@ -94,9 +92,8 @@ jobs: | |||
matrix: | |||
extension: ['tar.gz', 'whl'] | |||
steps: | |||
- uses: actions/checkout@v2 | |||
- name: install python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
@@ -110,9 +107,8 @@ jobs: | |||
matrix: | |||
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7'] | |||
steps: | |||
- uses: actions/checkout@v2 | |||
- name: install python ${{ matrix.python-version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
Pull Request check-list
$ tox
pass with this change (including linting)?NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Description of change
This PR bumps various GitHub Actions versions to current ones.