jbergstroem / mariadb-alpine

A tiny and fast MariaDB container
MIT License
72 stars 19 forks source link

chore(deps): all non-major dependencies #252

Closed renovate[bot] closed 11 months ago

renovate[bot] commented 1 year ago

This PR contains the following updates:

Package Type Update Change
docker/build-push-action action minor v4.1.1 -> v4.2.1
rhysd/actionlint patch 1.6.25 -> 1.6.26

Release Notes

docker/build-push-action (docker/build-push-action) ### [`v4.2.1`](https://togithub.com/docker/build-push-action/releases/tag/v4.2.1) [Compare Source](https://togithub.com/docker/build-push-action/compare/v4.2.0...v4.2.1) > **Note** > > Buildx v0.10 enables support for a minimal [SLSA Provenance](https://slsa.dev/provenance/) attestation, which requires support for [OCI-compliant](https://togithub.com/opencontainers/image-spec) multi-platform images. This may introduce issues with registry and runtime support (e.g. [Google Cloud Run and AWS Lambda](https://togithub.com/docker/buildx/issues/1533)). You can optionally disable the default provenance attestation functionality using `provenance: false`. - warn if docker config can't be parsed by [@​crazy-max](https://togithub.com/crazy-max) in [https://github.com/docker/build-push-action/pull/957](https://togithub.com/docker/build-push-action/pull/957) **Full Changelog**: https://github.com/docker/build-push-action/compare/v4.2.0...v4.2.1 ### [`v4.2.0`](https://togithub.com/docker/build-push-action/releases/tag/v4.2.0) [Compare Source](https://togithub.com/docker/build-push-action/compare/v4.1.1...v4.2.0) > **Note** > > Buildx v0.10 enables support for a minimal [SLSA Provenance](https://slsa.dev/provenance/) attestation, which requires support for [OCI-compliant](https://togithub.com/opencontainers/image-spec) multi-platform images. This may introduce issues with registry and runtime support (e.g. [Google Cloud Run and AWS Lambda](https://togithub.com/docker/buildx/issues/1533)). You can optionally disable the default provenance attestation functionality using `provenance: false`. - display proxy configuration by [@​crazy-max](https://togithub.com/crazy-max) in [https://github.com/docker/build-push-action/pull/872](https://togithub.com/docker/build-push-action/pull/872) - chore(deps): Bump [@​docker/actions-toolkit](https://togithub.com/docker/actions-toolkit) from 0.6.0 to 0.8.0 in [https://github.com/docker/build-push-action/pull/930](https://togithub.com/docker/build-push-action/pull/930) - chore(deps): Bump word-wrap from 1.2.3 to 1.2.5 in [https://github.com/docker/build-push-action/pull/925](https://togithub.com/docker/build-push-action/pull/925) - chore(deps): Bump semver from 6.3.0 to 6.3.1 in [https://github.com/docker/build-push-action/pull/902](https://togithub.com/docker/build-push-action/pull/902) **Full Changelog**: https://github.com/docker/build-push-action/compare/v4.1.1...v4.2.0
rhysd/actionlint (rhysd/actionlint) ### [`v1.6.26`](https://togithub.com/rhysd/actionlint/blob/HEAD/CHANGELOG.md#v1626---18-Sep-2023) [Compare Source](https://togithub.com/rhysd/actionlint/compare/v1.6.25...v1.6.26) - Several template fields and template actions were added. All fields and actions are listed in [the document](https://togithub.com/rhysd/actionlint/blob/main/docs/usage.md#format-error-messages). Please read it for more details. ([#​311](https://togithub.com/rhysd/actionlint/issues/311)) - By these additions, now actionlint can output the result in [the SARIF format](https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html). SARIF is a format for the output of static analysis tools used by [GitHub CodeQL](https://codeql.github.com/). [the example Go template](https://togithub.com/rhysd/actionlint/blob/main/testdata/format/sarif_template.txt) to format actionlint output in SARIF. ```sh actionlint -format "$(cat /path/to/sarif_template.txt)" > output.json ``` - `allKinds` returns the kinds (lint rules) information as an array. You can include what lint rules are defined in the command output. - `toPascalCase` converts snake case (`foo_bar`) or kebab case (`foo-bar`) into pascal case (`FooBar`). - Report an error when the condition at `if:` is always evaluated to true. See [the check document](https://togithub.com/rhysd/actionlint/blob/main/docs/checks.md#if-cond-always-true) to know more details. ([#​272](https://togithub.com/rhysd/actionlint/issues/272)) ```yaml ```