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): Bump actions/setup-go from 3 to 4 #293

Merged
merged 1 commit into from
Nov 30, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 30, 2023

Bumps actions/setup-go from 3 to 4.

Release notes

Sourced from actions/setup-go's releases.

v4.0.0

In scope of release we enable cache by default. The action won’t throw an error if the cache can’t be restored or saved. The action will throw a warning message but it won’t stop a build process. The cache can be disabled by specifying cache: false.

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v4
    with:
      go-version: ‘1.19’
  - run: go run hello.go

Besides, we introduce such changes as

Add support for stable and oldstable aliases

In scope of this release we introduce aliases for the go-version input. The stable alias instals the latest stable version of Go. The oldstable alias installs previous latest minor release (the stable is 1.19.x -> the oldstable is 1.18.x).

Stable

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
    with:
      go-version: 'stable'
  - run: go run hello.go

OldStable

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
    with:
      go-version: 'oldstable'
  - run: go run hello.go

Add support for go.work and pass the token input through on GHES

In scope of this release we added support for go.work file to pass it in go-version-file input.

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v3
</tr></table> 

... (truncated)

Commits
  • 93397be Fix Install on Windows is very slow (#393)
  • 27eec5b Merge pull request #396 from actions/dependabot/npm_and_yarn/semver-6.3.1
  • ecfc77a Merge pull request #397 from actions/dependabot/npm_and_yarn/word-wrap-1.2.4
  • 1b80a11 Bump word-wrap from 1.2.3 to 1.2.4
  • b1c3434 Fix licensing for Semver 6.3.1
  • 0bb97b1 Rebuild after updating Semver
  • 4220624 Bump semver from 6.3.0 to 6.3.1
  • db8764c Bump tough-cookie and @​azure/ms-rest-js (#392)
  • 08b314a Merge pull request #383 from akv-platform/issue-368
  • 4e0b6c7 Limit to Linux only
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Nov 30, 2023
@kubevirt-bot kubevirt-bot added dco-signoff: yes Indicates the PR's author has DCO signed all their commits. size/XS labels Nov 30, 2023
@openshift-ci openshift-ci bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Nov 30, 2023
Copy link

openshift-ci bot commented Nov 30, 2023

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubevirt member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

Copy link
Member

@0xFelix 0xFelix left a comment

Choose a reason for hiding this comment

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

/approve

Copy link

openshift-ci bot commented Nov 30, 2023

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: 0xFelix, dependabot[bot]

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Nov 30, 2023
@0xFelix
Copy link
Member

0xFelix commented Nov 30, 2023

/ok-to-test

@openshift-ci openshift-ci bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Nov 30, 2023
@kubevirt-bot
Copy link

@0xFelix: /override requires failed status contexts, check run or a prowjob name to operate on.
The following unknown contexts/checkruns were given:

  • ci/prow/unit-tessts

Only the following failed contexts/checkruns were expected:

  • ci/prow/e2e-tests
  • ci/prow/images
  • ci/prow/unit-tests
  • ci/prow/yaml-consistency-tests
  • code/snyk (Red Hat OpenShift Virtualization)

If you are trying to override a checkrun that has a space in it, you must put a double quote on the context.

In response to this:

/override ci/prow/e2e-tests
/override ci/prow/images
/override ci/prow/unit-tessts

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

Copy link

openshift-ci bot commented Nov 30, 2023

@0xFelix: /override requires failed status contexts, check run or a prowjob name to operate on.
The following unknown contexts/checkruns were given:

  • ci/prow/unit-tessts

Only the following failed contexts/checkruns were expected:

  • ci/prow/e2e-tests
  • ci/prow/images
  • ci/prow/unit-tests
  • ci/prow/yaml-consistency-tests
  • code/snyk (Red Hat OpenShift Virtualization)
  • pull-ci-kubevirt-kubevirt-tekton-tasks-main-e2e-tests
  • pull-ci-kubevirt-kubevirt-tekton-tasks-main-images
  • pull-ci-kubevirt-kubevirt-tekton-tasks-main-unit-tests
  • pull-ci-kubevirt-kubevirt-tekton-tasks-main-yaml-consistency-tests

If you are trying to override a checkrun that has a space in it, you must put a double quote on the context.

In response to this:

/override ci/prow/e2e-tests
/override ci/prow/images
/override ci/prow/unit-tessts

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@0xFelix
Copy link
Member

0xFelix commented Nov 30, 2023

/override ci/prow/e2e-tests
/override ci/prow/images
/override ci/prow/unit-tests

@kubevirt-bot
Copy link

@0xFelix: Overrode contexts on behalf of 0xFelix: ci/prow/e2e-tests, ci/prow/images, ci/prow/unit-tests

In response to this:

/override ci/prow/e2e-tests
/override ci/prow/images
/override ci/prow/unit-tests

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

1 similar comment
Copy link

openshift-ci bot commented Nov 30, 2023

@0xFelix: Overrode contexts on behalf of 0xFelix: ci/prow/e2e-tests, ci/prow/images, ci/prow/unit-tests

In response to this:

/override ci/prow/e2e-tests
/override ci/prow/images
/override ci/prow/unit-tests

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-go-4 branch from 369ed4b to b4d6ece Compare November 30, 2023 09:55
@ksimon1 ksimon1 merged commit 353cf71 into main Nov 30, 2023
2 of 3 checks passed
@dependabot dependabot bot deleted the dependabot/github_actions/actions/setup-go-4 branch November 30, 2023 09:56
Copy link

openshift-ci bot commented Nov 30, 2023

@dependabot[bot]: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-tests b4d6ece link true /test e2e-tests

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. dco-signoff: yes Indicates the PR's author has DCO signed all their commits. dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/XS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants