portefaix / tflint-ruleset-portefaix

Tflint ruleset for Portefaix
Other
0 stars 0 forks source link

Update actions/setup-go action to v3.2.1 #26

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/setup-go action minor v3.1.0 -> v3.2.1

Release Notes

actions/setup-go ### [`v3.2.1`](https://togithub.com/actions/setup-go/releases/tag/v3.2.1) [Compare Source](https://togithub.com/actions/setup-go/compare/v3.2.0...v3.2.1) In scope of this release we updated `actions/cache` package as the new version contains fixes for [caching error handling](https://togithub.com/actions/setup-go/pull/238) ### [`v3.2.0`](https://togithub.com/actions/setup-go/releases/tag/v3.2.0) [Compare Source](https://togithub.com/actions/setup-go/compare/v3.1.0...v3.2.0) This release introduces support for caching dependency files and compiler's build outputs [#​228](https://togithub.com/actions/setup-go/pull/228). For that action uses [@​toolkit/cache](https://togithub.com/actions/toolkit/tree/main/packages/cache) library under the hood that in turn allows getting rid of configuring [@​actions/cache](https://togithub.com/actions/cache) action separately and simplifies the whole workflow. Such input parameters as `cache` and `cache-dependency-path` were added. The `cache` input is optional, and caching is turned off by default, `cache-dependency-path` is used to specify the path to a dependency file - `go.sum`. **Examples of use-cases:** - `cache` input only: ```yaml steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: '18' cache: true ``` - `cache` along with `cache-dependency-path`: ```yaml steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: '18' cache: true cache-dependency-path: subdir/go.sum ```

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.