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

fix(deps): update all (major) #264

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

fix(deps): update all (major) #264

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 31, 2021

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action major v2.1.7 -> v4.2.0 age adoption passing confidence
actions/checkout action major v3 -> v4 age adoption passing confidence
actions/checkout action major v2 -> v4 age adoption passing confidence
actions/setup-go action major v2 -> v5 age adoption passing confidence
codfish/semantic-release-action action major v1.9.0 -> v3.5.0 age adoption passing confidence
github.com/urfave/cli require major v1.22.5 -> v2.27.5 age adoption passing confidence
golangci/golangci-lint-action action major v3 -> v6 age adoption passing confidence
ubuntu github-runner major 20.04 -> 24.04 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v4.2.0

Compare Source

⚠️ Important Changes

The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.

The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.

We are deprecating some versions of this action. We recommend upgrading to version v4 or v3 as soon as possible before February 1st, 2025. (Upgrade instructions below).

If you are using pinned SHAs, please use the SHAs of versions v4.2.0 or v3.4.0

If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.

Upgrading to the recommended versions will not break your workflows.

Read more about the change & access the migration guide: reference to the announcement.

Minor changes

Minor and patch version updates for these dependencies:

Full Changelog: actions/cache@v4...v4.2.0

v4.1.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.1.2

v4.1.1

Compare Source

What's Changed

Full Changelog: actions/cache@v4.1.0...v4.1.1

v4.1.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4.0.2...v4.1.0

v4.0.2

Compare Source

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.0.1

v4.0.0

Compare Source

What's Changed
New Contributors

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

v3.4.0

Compare Source

⚠️ Important Changes

The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.

The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.

We are deprecating some versions of this action. We recommend upgrading to version v4 or v3 as soon as possible before February 1st, 2025. (Upgrade instructions below).

If you are using pinned SHAs, please use the SHAs of versions v4.2.0 or v3.4.0

If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.

Upgrading to the recommended versions will not break your workflows.

Read more about the change & access the migration guide: reference to the announcement.

Minor changes

Minor and patch version updates for these dependencies:

Full Changelog: actions/cache@v3...v3.4.0

v3.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.3.3

v3.3.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.2

v3.3.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.3.1

v3.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.0

v3.2.6

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.2.6

v3.2.5

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.5

v3.2.4

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.4

v3.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.3

v3.2.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3.2.1...v3.2.2

v3.2.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.0

v3.0.11

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.0.11

v3.0.10

Compare Source

  • Fix a bug with sorting inputs.
  • Update definition for restore-keys in README.md

v3.0.9

Compare Source

  • Enhanced the warning message for cache unavailability in case of GHES.

v3.0.8

Compare Source

What's Changed

  • Fix zstd not working for windows on gnu tar in issues.
  • Allow users to provide a custom timeout as input for aborting cache segment download using the environment variable SEGMENT_DOWNLOAD_TIMEOUT_MIN. Default is 60 minutes.

v3.0.7

Compare Source

What's Changed

  • Fix for the download stuck problem has been added in actions/cache for users who were intermittently facing the issue. As part of this fix, new timeout has been introduced in the download step to stop the download if it doesn't complete within an hour and run the rest of the workflow without erroring out.

v3.0.6

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.0.6

v3.0.5

Compare Source

Removed error handling by consuming actions/cache 3.0 toolkit, Now cache server error handling will be done by toolkit.

v3.0.4

Compare Source

In this release, we have fixed the tar creation error while trying to create it with path as ~/ home folder on ubuntu-latest.

v3.0.3

Compare Source

Fixed avoiding empty cache save when no files are available for caching. (https://github.com/actions/cache/issues/624)

v3.0.2

Compare Source

This release adds the support for dynamic cache size cap on GHES.

v3.0.1

Compare Source

  • Added support for caching from GHES 3.5.
  • Fixed download issue for files > 2GB during restore.

v3.0.0

Compare Source

  • This change adds a minimum runner version(node12 -> node16), which can break users using an out-of-date/fork of the runner. This would be most commonly affecting users on GHES 3.3 or before, as those runners do not support node16 actions and they can use actions from github.com via github connect or manually copying the repo to their GHES instance.

  • Few dependencies and cache action usage examples have also been updated.

v2.1.8: Updating actions/core to version 1.10.0

Compare Source

The ::save-state and ::set-output are deprecated. The newer version of actions/core >1.10.0 uses the new syntax for save and set output. After this change, customers using actions/cache@v2 won't see deprecation warning message.

actions/checkout (actions/checkout)

v4

Compare Source

actions/setup-go (actions/setup-go)

v5

Compare Source

v4

Compare Source

v3

Compare Source

codfish/semantic-release-action (codfish/semantic-release-action)

v3.5.0

Compare Source

Features

v3.4.1

Compare Source

Bug Fixes
  • update release workflow to ensure every docker tag is pushed (#​208) (9a999e0)

v3.4.0

Compare Source

Features

v3.3.0

Compare Source

Features

v3.2.0

Compare Source

Features

v3.1.1

Compare Source

Bug Fixes

v3.1.0

Compare Source

Bug Fixes
  • set default values in the entrypoint (1370f92)
Features

v3.0.0

Compare Source

Bug Fixes
  • run safe-directory on /github/workspace (3e26d45)
Features
  • bump semantic to v22, use node v20 (7f2510c)
  • include main branch by default, update input casing (ad7eb9d)
BREAKING CHANGES

v2.2.1

Compare Source

Bug Fixes
  • force install additional plugins (78f3935)
  • revert back to 18.7.0 (b81ef1d)

v2.2.0

Compare Source

Features
  • add type, channel, gitHead, gitTag, name outputs (04df07b)

v2.1.0

Compare Source

Features

v2.0.0

Compare Source

Features
BREAKING CHANGES
  • Runs using nodejs v18.x and npm v8 now,
    so any dependencies specified in extends or additional_packages
    that have dependency conflicts with semantic-release v19.x will
    cause the action to fail.

v1.10.0

Compare Source

Features
urfave/cli (github.com/urfave/cli)

v2.27.5

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.4...v2.27.5

v2.27.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.3...v2.27.4

v2.27.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.2...v2.27.3

v2.27.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.1...v2.27.2

v2.27.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.0...v2.27.1

v2.27.0

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@auto-add-label auto-add-label bot added the bug label Mar 31, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from e562176 to d2264da Compare April 12, 2021 12:23
@renovate
Copy link
Author

renovate bot commented Apr 12, 2021

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/moul/sshportal":"/mnt/renovate/gh/moul/sshportal" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e CGO_ENABLED -w "/mnt/renovate/gh/moul/sshportal" docker.io/renovate/go:1.14.15 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./... && go mod tidy && go mod tidy"
go: github.com/asaskevich/govalidator/[email protected]: go.mod has non-.../v11 module path "github.com/asaskevich/govalidator" (and .../v11/go.mod does not exist) at revision v11.0.1

@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 47c739c to 4d84ffc Compare April 27, 2021 09:23
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from def8189 to 3b633e4 Compare June 11, 2021 04:47
@trafico-bot trafico-bot bot added the 🔍 Ready for Review Pull Request is not reviewed yet label Aug 9, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 362a67c to 8e56f08 Compare October 15, 2021 09:32
@renovate renovate bot changed the title fix(deps): update all (major) fix(deps): update module github.com/asaskevich/govalidator to v11 Oct 31, 2021
@renovate renovate bot force-pushed the renovate/major-all branch from 8e56f08 to d79e640 Compare November 2, 2021 07:34
@renovate renovate bot force-pushed the renovate/major-all branch from d79e640 to f786c7e Compare January 24, 2022 13:11
@renovate renovate bot force-pushed the renovate/major-all branch from f786c7e to 5c106f0 Compare February 24, 2022 19:37
@renovate renovate bot changed the title fix(deps): update module github.com/asaskevich/govalidator to v11 fix(deps): update all (major) Feb 24, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 30d29e5 to dbba949 Compare February 28, 2022 14:36
@renovate renovate bot changed the title fix(deps): update all (major) chore(deps): update all (major) Feb 28, 2022
@auto-add-label auto-add-label bot added dependencies and removed bug labels Feb 28, 2022
@renovate renovate bot force-pushed the renovate/major-all branch from dbba949 to 6312c12 Compare March 1, 2022 19:16
@renovate renovate bot force-pushed the renovate/major-all branch from 6312c12 to 0b4491b Compare March 21, 2022 11:05
@renovate renovate bot force-pushed the renovate/major-all branch from 0b4491b to ae9d732 Compare March 30, 2022 10:27
@renovate renovate bot force-pushed the renovate/major-all branch from ae9d732 to aec3f43 Compare April 11, 2022 11:13
@renovate renovate bot force-pushed the renovate/major-all branch from aec3f43 to 054bc71 Compare May 11, 2022 04:45
@renovate renovate bot force-pushed the renovate/major-all branch from 054bc71 to 90c2eb2 Compare May 31, 2022 11:00
@renovate renovate bot force-pushed the renovate/major-all branch from 90c2eb2 to 1b70a0b Compare June 7, 2022 12:15
@renovate renovate bot force-pushed the renovate/major-all branch from 1b70a0b to 433f67a Compare July 13, 2022 06:17
@renovate renovate bot force-pushed the renovate/major-all branch from 433f67a to 6799e0f Compare September 25, 2022 23:19
@renovate renovate bot force-pushed the renovate/major-all branch from 6799e0f to 1fec4b2 Compare November 20, 2022 13:29
@renovate renovate bot force-pushed the renovate/major-all branch from 2486685 to 7f7926b Compare January 17, 2024 17:07
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from e4b630b to 406a536 Compare February 11, 2024 00:04
@renovate renovate bot force-pushed the renovate/major-all branch from 406a536 to a7a3018 Compare February 29, 2024 20:37
@renovate renovate bot force-pushed the renovate/major-all branch from a7a3018 to ae9f7ae Compare March 19, 2024 17:58
@renovate renovate bot force-pushed the renovate/major-all branch from ae9f7ae to 6279aa7 Compare March 31, 2024 17:05
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 06a0497 to d04200f Compare April 9, 2024 23:06
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 16db34d to 4d76594 Compare April 27, 2024 18:35
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 8da10c7 to 77bd7ce Compare May 9, 2024 11:02
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c43d448 to 6ca5905 Compare June 17, 2024 23:06
@renovate renovate bot force-pushed the renovate/major-all branch from 6ca5905 to e05e32d Compare July 14, 2024 07:53
@renovate renovate bot force-pushed the renovate/major-all branch from e05e32d to d0b64cc Compare July 24, 2024 22:21
@renovate renovate bot force-pushed the renovate/major-all branch from d0b64cc to bcaad1d Compare August 11, 2024 17:26
@renovate renovate bot force-pushed the renovate/major-all branch from bcaad1d to 8cfb090 Compare September 11, 2024 16:27
@renovate renovate bot force-pushed the renovate/major-all branch from 8cfb090 to dc65e06 Compare September 26, 2024 21:39
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 8b6de03 to eeee345 Compare October 8, 2024 19:12
@renovate renovate bot force-pushed the renovate/major-all branch from eeee345 to f23bf57 Compare October 13, 2024 13:53
@renovate renovate bot force-pushed the renovate/major-all branch from f23bf57 to 27cfd02 Compare October 22, 2024 13:20
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from a954c75 to abcfcbe Compare November 17, 2024 15:45
@renovate renovate bot force-pushed the renovate/major-all branch from abcfcbe to 4f2c63b Compare December 5, 2024 18:04
@renovate renovate bot changed the title chore(deps): update all (major) fix(deps): update all (major) Dec 10, 2024
@renovate renovate bot force-pushed the renovate/major-all branch from 4f2c63b to 4aa748a Compare December 22, 2024 17:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies 🔍 Ready for Review Pull Request is not reviewed yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants