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

chore(deps): update all non-major github action dependencies #323

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 21, 2024

This PR contains the following updates:

Package Type Update Change
actions/setup-python action minor v2 -> v2.3.4
github/codeql-action action minor v2.26.6 -> v2.28.0

Review

  • Updates have been tested and work
  • If updates are AWS related, versions match the infrastructure (e.g. Lambda runtime, database, etc.)

Release Notes

actions/setup-python (actions/setup-python)

v2.3.4

Compare Source

What's Changed

In the scope of this patch release, the warning for deprecating Python 2.x was added in https://github.com/actions/setup-python/pull/675 by @​dmitry-shibanov

For more information, check out https://github.com/actions/setup-python/issues/672

Full Changelog: actions/setup-python@v2...v2.3.4

v2.3.3: Update actions/core to 1.10.0 for v2

Compare Source

In scope of this release we update actions/core to 1.10.0 for v2 major tag: https://github.com/actions/setup-python/pull/533.

v2.3.2: Update primary and restore keys for pip

Compare Source

In scope of this release we include a version of python in restore and primary cache keys for pip. Besides, we add temporary fix for Windows caching issue, that the pip cache dir command returns non zero exit code or writes to stderr. Moreover we updated node-fetch dependency.

v2.3.1: Update actions/cache version to 1.0.8

Compare Source

We have updated actions/cache dependency version to 1.0.8 to support 10GB cache upload

v2.3.0: Support caching dependencies

Compare Source

This release introduces dependency caching support (https://github.com/actions/setup-python/pull/266)

Caching dependencies.

The action has a built-in functionality for caching and restoring pip/pipenv dependencies. The cache input is optional, and caching is turned off by default.

Besides, this release introduces dependency caching support for mono repos and repositories with complex structure.

By default, the action searches for the dependency file (requirements.txt for pip or Pipfile.lock for pipenv) in the whole repository. Use the cache-dependency-path input for cases when you want to override current behaviour and use different file for hash generation (for example requirements-dev.txt). This input supports wildcards or a list of file names for caching multiple dependencies.

Caching pip dependencies:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
- run: pip install -r requirements.txt
- run: pip test
Caching pipenv dependencies:
steps:
- uses: actions/checkout@v2
- name: Install pipenv
  run: pipx install pipenv
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pipenv'
- run: pipenv install
- run: pipenv test
Change dependency file:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
    cache-dependency-path: '**/requirements-dev.txt'
- run: pip install -r subdirectory/requirements-dev.txt
- run: pip test

v2.2.2

Compare Source

Address PyPy installation issues on Windows: https://github.com/actions/setup-python/issues/196

v2.2.1

Compare Source

  • Fix PyPy3 issues with Windows

v2.2.0

Compare Source

  • Support for PyPy 3.7 in addition to the current 3.6 support
  • Support for Pre-Release distributions of PyPy
  • Support for PyPy Nighly

v2.1.4

Compare Source

  • Improvements for more reliable setup on self-hosted runners

v2.1.3

Compare Source

  • Updates to NPM dependencies
  • Updates to licenses

v2.1.2

Compare Source

  • Add Third Party License Information

v2.1.1

Compare Source

Fix installation logic to prevent leaving files in GITHUB_WORKSPACE
Related issue: https://github.com/actions/setup-python/issues/101

v2.1.0

Compare Source

  • Support for pre-release Python distributions

v2.0.2

Compare Source

  • Improved logs & output when downloading and setting up Python versions
  • Improvements and updates to downloading Python versions from actions/python-versions

v2.0.1

Compare Source

github/codeql-action (github/codeql-action)

v2.28.0

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

This is the last planned release of the v2. To continue getting updates for the CodeQL Action, please switch to v3.

2.28.0 - 20 Dec 2024

  • Bump the minimum CodeQL bundle version to 2.15.5. #​2655
  • Don't fail in the unusual case that a file is on the search path. #​2660.

See the full CHANGELOG.md for more information.

v2.27.9

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.9 - 12 Dec 2024

No user facing changes.

See the full CHANGELOG.md for more information.

v2.27.8

Compare Source

v2.27.7

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.7 - 10 Dec 2024
  • We are rolling out a change in December 2024 that will extract the CodeQL bundle directly to the toolcache to improve performance. #​2631
  • Update default CodeQL bundle version to 2.20.0. #​2636

See the full CHANGELOG.md for more information.

v2.27.6

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.6 - 03 Dec 2024
  • Update default CodeQL bundle version to 2.19.4. #​2626

See the full CHANGELOG.md for more information.

v2.27.5

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.5 - 19 Nov 2024

No user facing changes.

See the full CHANGELOG.md for more information.

v2.27.4

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.4 - 14 Nov 2024

No user facing changes.

See the full CHANGELOG.md for more information.

v2.27.3

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.3 - 12 Nov 2024

No user facing changes.

See the full CHANGELOG.md for more information.

v2.27.2

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.2 - 12 Nov 2024

  • Fixed an issue where setting up the CodeQL tools would sometimes fail with the message "Invalid value 'undefined' for header 'authorization'". #​2590

See the full CHANGELOG.md for more information.

v2.27.1

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.1 - 08 Nov 2024
  • The CodeQL Action now downloads bundles compressed using Zstandard on GitHub Enterprise Server when using Linux or macOS runners. This speeds up the installation of the CodeQL tools. This feature is already available to GitHub.com users. #​2573
  • Update default CodeQL bundle version to 2.19.3. #​2576

See the full CHANGELOG.md for more information.

v2.27.0

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.0 - 22 Oct 2024

  • Bump the minimum CodeQL bundle version to 2.14.6. #​2549
  • Fix an issue where the upload-sarif Action would fail with "upload-sarif post-action step failed: Input required and not supplied: token" when called in a composite Action that had a different set of inputs to the ones expected by the upload-sarif Action. #​2557
  • Update default CodeQL bundle version to 2.19.2. #​2552

See the full CHANGELOG.md for more information.

v2.26.13

Compare Source

v2.26.12

Compare Source

v2.26.11

Compare Source

v2.26.10

Compare Source

v2.26.9

Compare Source

v2.26.8

Compare Source

v2.26.7

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Montreal, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 91b5049 to 56577d7 Compare September 26, 2024 16:31
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.7 chore(deps): update github/codeql-action action to v2.26.8 Sep 26, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 2 times, most recently from 8d561c7 to 57d97a5 Compare October 1, 2024 19:30
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.8 chore(deps): update github/codeql-action action to v2.26.9 Oct 1, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 57d97a5 to db37d80 Compare October 7, 2024 15:12
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.9 chore(deps): update github/codeql-action action to v2.26.10 Oct 7, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from db37d80 to ecee0af Compare October 10, 2024 22:38
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.10 chore(deps): update github/codeql-action action to v2.26.11 Oct 10, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from ecee0af to 61db1b2 Compare October 14, 2024 19:48
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.11 chore(deps): update github/codeql-action action to v2.26.12 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 3 times, most recently from 7195a1c to a3aedec Compare October 21, 2024 13:03
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.12 chore(deps): update github/codeql-action action to v2.26.13 Oct 21, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 2 times, most recently from 759b25e to c54dc41 Compare October 29, 2024 18:19
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.26.13 chore(deps): update github/codeql-action action to v2.27.0 Oct 29, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 2 times, most recently from ba2b5c0 to e0418d6 Compare October 30, 2024 16:03
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 4 times, most recently from 838e4b8 to 9b8986c Compare November 15, 2024 19:11
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.0 chore(deps): update github/codeql-action action to v2.27.1 Nov 15, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 9b8986c to d15e6c7 Compare November 19, 2024 14:25
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.1 chore(deps): update github/codeql-action action to v2.27.2 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from d15e6c7 to 14f63b4 Compare November 19, 2024 20:33
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.2 chore(deps): update github/codeql-action action to v2.27.3 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 14f63b4 to 5f119b3 Compare November 21, 2024 16:27
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.3 chore(deps): update github/codeql-action action to v2.27.4 Nov 21, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 2 times, most recently from d7a8fd2 to f989362 Compare November 27, 2024 20:27
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.4 chore(deps): update github/codeql-action action to v2.27.5 Nov 27, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from f989362 to 442e855 Compare December 2, 2024 19:50
@renovate renovate bot changed the title chore(deps): update github/codeql-action action to v2.27.5 chore(deps): update all non-major github action dependencies Dec 2, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 442e855 to 3aa6754 Compare December 2, 2024 21:58
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 3 times, most recently from 7636a1a to e27217e Compare December 13, 2024 18:21
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch 3 times, most recently from 1a6bebc to 86e22b0 Compare December 20, 2024 00:15
@renovate renovate bot force-pushed the renovate/all-non-major-github-action branch from 86e22b0 to 3681721 Compare December 27, 2024 19:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants