Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2022

This PR contains the following updates:

Package Type Update Change
actions/checkout action minor v3.0.2v3.6.0
actions/setup-node action minor v3.4.1v3.9.1
docker/build-push-action action minor v3.1.1v3.3.1
docker/login-action action minor v2.0.0v2.2.0
docker/metadata-action action minor v4.0.1v4.6.0
docker/setup-buildx-action action minor v2.0.0v2.10.0
docker/setup-qemu-action action minor v2.0.0v2.2.0
rust final minor 1.63.0-slim1.92.0-slim
rust final minor 1.63.0-alpine1.92.0-alpine
rust final minor 1.62.0-slim1.92.0-slim
rust final minor 1.62.0-alpine1.92.0-alpine
rust final minor 1.61.0-slim1.92.0-slim
rust final minor 1.61.0-alpine1.92.0-alpine

Release Notes

actions/checkout (actions/checkout)

v3.6.0

Compare Source

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.0

Compare Source

actions/setup-node (actions/setup-node)

v3.9.1

Compare Source

What's Changed

Full Changelog: actions/setup-node@v3...v3.9.1

v3.9.0

Compare Source

What's Changed
  • Upgrade @​actions/cache to 4.0.3 by @​gowridurgad in #​1270
    In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.

Full Changelog: actions/setup-node@v3...v3.9.0

v3.8.2

Compare Source

What's Changed

Full Changelog: actions/setup-node@v3...v3.8.2

v3.8.1

Compare Source

What's Changed

In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov in #​831. It is filtered and checked in the toolkit/cache library.

Full Changelog: actions/setup-node@v3...v3.8.1

v3.8.0

Compare Source

What's Changed

Bug fixes:
Feature implementations:
  • feat: handling the case where "node" is used for tool-versions file. by @​xytis in #​812
Documentation changes:
Update dependencies:

New Contributors

Full Changelog: actions/setup-node@v3...v3.8.0

v3.7.0

Compare Source

What's Changed

In scope of this release we added a logic to save an additional cache path for yarn 3 (related pull request and feature request). Moreover, we added functionality to use all the sub directories derived from cache-dependency-path input and add detect all dependencies directories to cache (related pull request and feature request).

Besides, we made such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v3.7.0

v3.6.0: Add Support for Nightly, Canary and RC builds for Node.js

Compare Source

In scope of this release we added support to download nightly, rc (#​611) and canary (#​619) Node.js distributions.

For nightly versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-nightly'
      - run: npm ci
      - run: npm test
For canary versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-v8-canary’
      - run: npm ci
      - run: npm test
For rc versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16.0.0-rc.1’
      - run: npm ci
      - run: npm test

Note: For more examples please refer to documentation.

Besides, we added the following changes as:

  • Updated minimatch: #​608
  • Fixed extra newline character in version output when reading from a file: #​625
  • Passed the token input through on GHES: #​595
  • Fixed issue with scoped registries are duplicated in npmrc: #​637

v3.5.1: Update @​actions/core and Print Node, Npm, Yarn versions

Compare Source

In scope of this release we updated actions/core to 1.10.0. Moreover, we added logic to print Nodejs, Npm, Yarn versions after installation.

v3.5.0: Add support for engines.node and Volta

Compare Source

In scope of this release we add support for engines.node. The action will be able to grab the version form package.json#engines.node. #​485. Moreover, we added support for Volta

Besides, we updated @​actions/core to 1.9.1 and @​actions/cache to 3.0.4

docker/build-push-action (docker/build-push-action)

v3.3.1

Compare Source

Full Changelog: docker/build-push-action@v3.3.0...v3.3.1

v3.3.0

Compare Source

Note

Buildx v0.10 enables support for a minimal SLSA Provenance attestation, which requires support for OCI-compliant multi-platform images. This may introduce issues with registry and runtime support (e.g. Google Cloud Run and AWS Lambda). You can optionally disable the default provenance attestation functionality using provenance: false.

Full Changelog: docker/build-push-action@v3.2.0...v3.3.0

v3.2.0

Compare Source

Full Changelog: docker/build-push-action@v3.1.1...v3.2.0

docker/login-action (docker/login-action)

v2.2.0

Compare Source

Full Changelog: docker/login-action@v2.1.0...v2.2.0

v2.1.0

Compare Source

Full Changelog: docker/login-action@v2.0.0...v2.1.0

docker/metadata-action (docker/metadata-action)

v4.6.0

Compare Source

Full Changelog: docker/metadata-action@v4.5.0...v4.6.0

v4.5.0

Compare Source

Full Changelog: docker/metadata-action@v4.4.0...v4.5.0

v4.4.0

Compare Source

Full Changelog: docker/metadata-action@v4.3.0...v4.4.0

v4.3.0

Compare Source

Full Changelog: docker/metadata-action@v4.2.0...v4.3.0

v4.2.0

Compare Source

  • Add tz attribute to handlebar date function by @​chroju (#​251)
  • Bump minimatch from 3.0.4 to 3.1.2 (#​242)
  • Bump csv-parse from 5.3.1 to 5.3.3 (#​245)
  • Bump json5 from 2.2.0 to 2.2.3 (#​252)

Full Changelog: docker/metadata-action@v4.1.1...v4.2.0

v4.1.1

Compare Source

  • Revert changes to set associated head sha on pull request event by @​crazy-max (#​239)
    • User can still set associated head sha on PR by setting the env var DOCKER_METADATA_PR_HEAD_SHA=true
  • Bump csv-parse from 5.3.0 to 5.3.1 (#​237)

Full Changelog: docker/metadata-action@v4.1.0...v4.1.1

v4.1.0

Compare Source

Full Changelog: docker/metadata-action@v4.0.1...v4.1.0

docker/setup-buildx-action (docker/setup-buildx-action)

v2.10.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.9.1...v2.10.0

v2.9.1

Compare Source

Full Changelog: docker/setup-buildx-action@v2.9.0...v2.9.1

v2.9.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.8.0...v2.9.0

v2.8.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.7.0...v2.8.0

v2.7.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.6.0...v2.7.0

v2.6.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.5.0...v2.6.0

v2.5.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.4.1...v2.5.0

v2.4.1

Compare Source

Full Changelog: docker/setup-buildx-action@v2.4.0...v2.4.1

v2.4.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.3.0...v2.4.0

v2.3.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.2.1...v2.3.0

v2.2.1

Compare Source

Full Changelog: docker/setup-buildx-action@v2.2.0...v2.2.1

v2.2.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.1.0...v2.2.0

v2.1.0

Compare Source

Full Changelog: docker/setup-buildx-action@v2.0.0...v2.1.0

docker/setup-qemu-action (docker/setup-qemu-action)

v2.2.0

Compare Source

Full Changelog: docker/setup-qemu-action@v2.1.0...v2.2.0

v2.1.0

Compare Source

Full Changelog: docker/setup-qemu-action@v2.0.0...v2.1.0


Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, 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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Oct 9, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from e4b2acf to 929227f Compare October 18, 2022 10:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 929227f to a69b10a Compare October 27, 2022 01:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b183e54 to 7f54c6d Compare November 8, 2022 20:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 693a20f to 755b598 Compare March 16, 2023 19:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3ddb9b4 to 6ca0c3c Compare June 7, 2023 16:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 72f7e25 to df8dfc5 Compare June 13, 2023 12:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from baa8301 to 2ec0ef8 Compare June 28, 2023 15:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 291dca3 to bc2eb90 Compare July 12, 2023 14:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 942cea3 to 67b9f1b Compare July 19, 2023 22:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8d70d43 to e16c1ac Compare August 10, 2023 18:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e16c1ac to 72745b5 Compare August 14, 2023 12:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f3fb64c to 0a2f27f Compare April 4, 2024 17:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f64fa29 to 3f75bad Compare April 11, 2024 15:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f75bad to d902c81 Compare May 2, 2024 20:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d902c81 to f790796 Compare May 21, 2024 21:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f790796 to bbe6255 Compare June 13, 2024 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bbe6255 to 680b566 Compare July 9, 2024 20:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 680b566 to 7876153 Compare July 25, 2024 21:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7876153 to 1eb071a Compare August 8, 2024 22:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1eb071a to d364bb8 Compare September 6, 2024 04:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d364bb8 to f249fbb Compare October 18, 2024 02:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f249fbb to dee898c Compare November 18, 2024 18:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dee898c to e968fcc Compare December 2, 2024 23:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e968fcc to 135f470 Compare January 10, 2025 02:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 135f470 to 26db234 Compare January 22, 2025 20:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 26db234 to 436bbb3 Compare January 31, 2025 02:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 436bbb3 to babc856 Compare February 21, 2025 20:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from babc856 to 427215b Compare March 19, 2025 03:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 427215b to d60ebda Compare April 3, 2025 19:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 869e639 to 67a3a1f Compare April 17, 2025 15:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 67a3a1f to 0d3458b Compare May 15, 2025 23:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0d3458b to d090e65 Compare June 26, 2025 22:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d090e65 to 314b5b9 Compare August 8, 2025 20:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 314b5b9 to cbc640a Compare September 19, 2025 01:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cbc640a to 70fe814 Compare October 31, 2025 00:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 70fe814 to c59db43 Compare November 11, 2025 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c59db43 to 4b0a1cb Compare December 12, 2025 03:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant