FDio / govpp

Go toolset for the VPP.
Apache License 2.0
192 stars 81 forks source link

Bump the github-deps group with 3 updates #152

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps the github-deps group with 3 updates: actions/setup-go, autero1/action-gotestsum and guyarb/golang-test-annotations.

Updates 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


Updates autero1/action-gotestsum from 1.0.0 to 2.0.0

Release notes

Sourced from autero1/action-gotestsum's releases.

action-gotestsum v2.0.0

  • Update runtime to Node 16
  • Bump dependencies

See CHANGELOG.md for more details.

Changelog

Sourced from autero1/action-gotestsum's changelog.

2.0.0 (2023-04-20)

Commits
  • 7263b9d chore(release): 2.0.0
  • b4c670c chore(release): Add build assets
  • fb15bfa Update README.md
  • b469c35 bump README version to next major
  • e190b2f Merge pull request #39 from autero1/chore/action-deps
  • 9406db4 chore(deps): upgrade actions
  • 2a62c4d Merge pull request #38 from autero1/chore/deps
  • caa86c2 chore(deps): bump node version and dependencies
  • 60aa670 Merge pull request #24 from autero1/dependabot/npm_and_yarn/actions/core-1.9.1
  • 8e6bb2b chore(deps): bump @​actions/core from 1.2.6 to 1.9.1
  • Additional commits viewable in compare view


Updates guyarb/golang-test-annotations from 0.6.0 to 0.7.0

Release notes

Sourced from guyarb/golang-test-annotations's releases.

Supporting optional working directory

What's Changed

New Contributors

Full Changelog: https://github.com/guyarb/golang-test-annotations/compare/v0.6.0...v0.7.0

Commits


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