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 github-actions (major) #251

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 30, 2023

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v3 -> v4
actions/setup-node action major v3 -> v4
actions/setup-python action major v4 -> v5
baptiste0928/cargo-install action major v1.3.1 -> v3.1.1
docker/login-action action major v2 -> v3
google-github-actions/release-please-action action major v3 -> v4
hashicorp/vault-action action major v2.5.0 -> v3.0.0
isbang/compose-action action major v1.4.1 -> v2.0.2
pnpm/action-setup action major v2.2.4 -> v4.0.0
stefanzweifel/git-auto-commit-action action major v4 -> v5

Release Notes

actions/checkout (actions/checkout)

v4

Compare Source

actions/setup-node (actions/setup-node)

v4

Compare Source

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

v5

Compare Source

baptiste0928/cargo-install (baptiste0928/cargo-install)

v3.1.1

Compare Source

Fixed
  • Pre-release versions are ignored when resolving the latest version.

v3.1.0

Compare Source

Changed
  • Runner arch is included in the cache key.
Fixed
  • Fix runner os version resolution on macOS runners. (issue #​24)

v3.0.1

Compare Source

Fixed
  • Improve git tag/branch resolution. (issue #​22)

v3.0.0

Compare Source

Added
  • Runner os version is included in the cache key. (#​21)
Changed
  • Breaking: The action now runs on Node.js 20.
  • Dependencies have been updated.

v2.2.0

Compare Source

Added
  • Support alternative registries with the registry and index input parameters.
Changed
  • Crate versions are fetched from the sparse index instead of the crates.io API.

v2.1.0

Compare Source

Added
  • Git installation is now supported with the git input parameter. You can specify a branch, tag or commit hash. (#​14)
Usage:
- name: Install cargo-sort from git
  uses: baptiste0928/cargo-install@v2
  with:
    crate: cargo-sort
    git: https://github.com/devinr528/cargo-sort
    tag: v1.0.9  # `branch` and `commit` are also supported

v2.0.0

Compare Source

New major release. This new version should remove the warning about Node 12 being deprecated, along with some improvements to the default behaviour. I also rewrote and improved most of the code.

Added
  • Name and version are shown in the cache key. This allows to identify cache
    entries in the cache management UI more easily.
Changed
  • Breaking: The action now runs on Node.js 16.
  • Breaking: Versions without semver range (e.g. 1.2.3) are now considered
    as exact versions.
  • Breaking: Set --locked by default. locked input is no longer
    deprecated.
  • Various code improvements and refactoring.
docker/login-action (docker/login-action)

v3

Compare Source

google-github-actions/release-please-action (google-github-actions/release-please-action)

v4

Compare Source

hashicorp/vault-action (hashicorp/vault-action)

v3.0.0

Compare Source

3.0.0 (February 15, 2024)

Improvements:

  • Bump node runtime from node16 to node20 GH-528

v2.8.1

Compare Source

2.8.1 (February 15, 2024)

Bugs:

  • Revert GH-509 which made a backwards incompatible bump of the node runtime from node16 to node20 GH-527

v2.8.0

Compare Source

2.8.0 (February 1, 2024)

Features:

  • Add ignoreNotFound input (default: false) to prevent the action from failing when a secret does not exist GH-518

Improvements:

v2.7.5

Compare Source

2.7.5 (January 30, 2024)

Improvements:

  • Bump node runtime from node16 to node20 GH-509
  • Bump got from 11.8.5 to 11.8.6 GH-492

v2.7.4

Compare Source

2.7.4 (October 26, 2023)

Features:

  • Add ability to specify a wildcard for the key name to get all keys in the path GH-488

v2.7.3

Compare Source

2.7.3 (July 13, 2023)

Bugs:

  • Revert to the handling of secrets in JSON format since v2.1.2 GH-478

v2.7.2

Compare Source

2.7.2 (July 6, 2023)

Bugs:

  • Fix a regression that broke support for secrets in JSON format GH-473

v2.7.1

Compare Source

2.7.1 (July 3, 2023)

Bugs:

  • Revert GH-466 which caused a regression in secrets stored as JSON strings GH-471

v2.7.0

Compare Source

Bugs:

  • Fix a regression that broke support for secrets in JSON format GH-466

Improvements:

  • Fix a warning about outputToken being an unexpected input GH-461

v2.6.0

Compare Source

2.6.0 (June 7, 2023)

Features:

  • Add ability to set the vault_token output to contain the Vault token after authentication GH-441
  • Add support for userpass and ldap authentication methods GH-440
  • Define an output, errorMessage, for vault-action's error messages so subsequent steps can read the errors GH-446

Bugs:

  • Handle undefined response in getSecrets error handler GH-431
isbang/compose-action (isbang/compose-action)

v2.0.2

Compare Source

Release Summary

This release introduces new tests for the attach-dependencies feature, along with support for absolute paths in the compose-file input. Documentation for actions and workflows has been updated, and several dependencies related to GitHub actions and npm development have been bumped to ensure better performance and stability.

No breaking changes have been introduced.

What's Changed

Full Changelog: hoverkraft-tech/compose-action@v2.0.1...v2.0.2

v2.0.1

Compare Source

What's Changed

Full Changelog: hoverkraft-tech/compose-action@v2.0.0...v2.0.1

v2.0.0

Compare Source

BREAKING CHANGES

  • Migrate action to Node.js 20
  • compose-file validation: at least one compose file MUST exist (default one is docker-compose.yml), every given compose files MUST exist

Changelog

Features
  • Migrate to Node.js 20 and TypeScript. (#​56)
  • Make docker-compose cwd aware. (#​61)
  • Add logs debug on post. (#​63)
  • Log docker-compose version. (#​66)
Fixes
  • Ensure given docker-compose file(s) are valid and at least one is provided. (#​65)
Documentation Updates
Dependency Updates
  • Bumped the github-actions-dependencies group with 3 updates. (#​46, #​57)
  • Bumped docker-compose from 0.24.1 to 0.24.7. (#​48)
  • Bumped the actions-dependencies group with 1 update. (#​58)
  • Bumped the npm-dev-dependencies group with 1 update. (#​67)
Continuous Integration
  • Upgrade GitHub Actions. (#​60)
  • Added --abort-on-container-exit option in tests. (#​18)

New Contributors

Full Changelog: hoverkraft-tech/compose-action@v1.5.1...v2.0.0

v1.5.1

Compare Source

What's Changed

New Contributors

Full Changelog: hoverkraft-tech/compose-action@v1.5.0...v1.5.1

v1.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: hoverkraft-tech/compose-action@v1.4.1...v1.5.0

pnpm/action-setup (pnpm/action-setup)

v4.0.0

Compare Source

An error is thrown if one version of pnpm is specified in the packageManager field of package.json and a different version is specified in the action's settings #​122

v3.0.0

Compare Source

The action is updated to run on Node.js v20

v2.4.1

Compare Source

v2.4.0

Compare Source

Add ability to install standalone binary (https://github.com/pnpm/action-setup/pull/92).

v2.3.0

Compare Source

stefanzweifel/git-auto-commit-action (stefanzweifel/git-auto-commit-action)

v5

Compare Source

Fixed
  • Fail if attempting to execute git commands in a directory that is not a git-repo. (#​326) @​ccomendant
Dependency Updates
Misc

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), 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

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

@renovate renovate bot force-pushed the renovate/major-all-github-actions branch 2 times, most recently from a0709ff to df8a8fa Compare February 8, 2024 13:38
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from df8a8fa to 954ff74 Compare February 15, 2024 19:51
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from 954ff74 to ca5fd9d Compare March 8, 2024 13:25
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from ca5fd9d to 2fd8a88 Compare April 3, 2024 14:25
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from 2fd8a88 to 777dffc Compare April 10, 2024 18:53
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from 777dffc to fb4b604 Compare May 7, 2024 13:47
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch 2 times, most recently from 4ce7b7c to a824a95 Compare June 24, 2024 15:55
@renovate renovate bot force-pushed the renovate/major-all-github-actions branch from a824a95 to bb278ba Compare September 20, 2024 13:05
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