[PR #2135] [MERGED] Bump baptiste0928/cargo-install from 2 to 3 #2831

Closed
opened 2026-03-16 11:10:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2135
Author: @dependabot[bot]
Created: 2/5/2024
Status: Merged
Merged: 2/6/2024
Merged by: @bluejekyll

Base: mainHead: dependabot/github_actions/baptiste0928/cargo-install-3


📝 Commits (1)

  • c0ec4d9 Bump baptiste0928/cargo-install from 2 to 3

📊 Changes

2 files changed (+6 additions, -6 deletions)

View changed files

📝 .github/workflows/publish.yml (+1 -1)
📝 .github/workflows/test.yml (+5 -5)

📄 Description

Bumps baptiste0928/cargo-install from 2 to 3.

Release notes

Sourced from baptiste0928/cargo-install's releases.

v3.0.0

Added

  • Runner os version is included in the cache key. (#21)

Changed

  • Breaking: The action now runs on Node.js 20.
  • Dependencies have been updated.

v2.2.0

Added

  • Support alternative registries with the registry and index input parameters.

Changed

  • Crate versions are fetched from the sparse index instead of the crates.io API.

v2.1.0

Added

  • Git installation is now supported with the git input parameter. You can specify a branch, tag or commit hash. (#14)

Usage:

- name: Install cargo-sort from git
  uses: baptiste0928/cargo-install@v2
  with:
    crate: cargo-sort
    git: https://github.com/devinr528/cargo-sort
    tag: v1.0.9  # `branch` and `commit` are also supported
Changelog

Sourced from baptiste0928/cargo-install's changelog.

[3.0.0] - 2024-02-01

Added

  • Runner os version is included in the cache key. (issue #21)

Changed

  • Breaking: The action now runs on Node.js 20.
  • Dependencies have been updated.

[2.2.0] - 2023-09-07

Added

  • Support alternative registries with the registry and index input parameters.

Changed

  • Crate versions are fetched from the sparse index instead of the crates.io API.

[2.1.0] - 2023-06-09

Added

  • Git installation is now supported with the git input parameter. You can specify a branch, tag or commit hash.

[2.0.0] - 2023-03-23

Added

  • Name and version are shown in the cache key. This allow to identify cache entries in the cache management UI more easily.

Changed

  • Breaking: The action now runs on Node.js 16.
  • Breaking: Versions without semver range (e.g. 1.2.3) are now considered as exact versions.
  • Breaking: Set --locked by default. locked input is no longer deprecated.
  • Various code improvements and refactoring.

[1.3.1] - 2023-02-15

Fixed

  • Use semver instead of compare-versions to fix version resolution issues.
  • Dependencies have been updated. This removes the warning about set-output being deprecated.

[1.3.0] - 2022-06-14

Added

  • Add args input to add additional arguments to the cargo install command.

Deprecated

  • locked input is deprecated, use the args input with --locked instead.

[1.2.0] - 2022-03-16

Added

  • Add locked input to add --locked argument to cargo install command.

... (truncated)

Commits

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/2135 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/5/2024 **Status:** ✅ Merged **Merged:** 2/6/2024 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `main` ← **Head:** `dependabot/github_actions/baptiste0928/cargo-install-3` --- ### 📝 Commits (1) - [`c0ec4d9`](https://github.com/hickory-dns/hickory-dns/commit/c0ec4d9c49626f808eeb050dbfe022f9b32250e6) Bump baptiste0928/cargo-install from 2 to 3 ### 📊 Changes **2 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/publish.yml` (+1 -1) 📝 `.github/workflows/test.yml` (+5 -5) </details> ### 📄 Description Bumps [baptiste0928/cargo-install](https://github.com/baptiste0928/cargo-install) from 2 to 3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/baptiste0928/cargo-install/releases">baptiste0928/cargo-install's releases</a>.</em></p> <blockquote> <h2>v3.0.0</h2> <h3>Added</h3> <ul> <li>Runner os version is included in the cache key. (<a href="https://redirect.github.com/baptiste0928/cargo-install/issues/21">#21</a>)</li> </ul> <h3>Changed</h3> <ul> <li><strong>Breaking:</strong> The action now runs on Node.js 20.</li> <li>Dependencies have been updated.</li> </ul> <h2>v2.2.0</h2> <h3>Added</h3> <ul> <li>Support alternative registries with the <code>registry</code> and <code>index</code> input parameters.</li> </ul> <h3>Changed</h3> <ul> <li>Crate versions are fetched from the sparse index instead of the crates.io API.</li> </ul> <h2>v2.1.0</h2> <h3>Added</h3> <ul> <li>Git installation is now supported with the <code>git</code> input parameter. You can specify a branch, tag or commit hash. (<a href="https://redirect.github.com/baptiste0928/cargo-install/issues/14">#14</a>)</li> </ul> <h4>Usage:</h4> <pre lang="yaml"><code>- name: Install cargo-sort from git uses: baptiste0928/cargo-install@v2 with: crate: cargo-sort git: https://github.com/devinr528/cargo-sort tag: v1.0.9 # `branch` and `commit` are also supported </code></pre> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/baptiste0928/cargo-install/blob/main/CHANGELOG.md">baptiste0928/cargo-install's changelog</a>.</em></p> <blockquote> <h2>[3.0.0] - 2024-02-01</h2> <h3>Added</h3> <ul> <li>Runner os version is included in the cache key. (issue <a href="https://redirect.github.com/baptiste0928/cargo-install/issues/21">#21</a>)</li> <li></li> </ul> <h3>Changed</h3> <ul> <li><strong>Breaking:</strong> The action now runs on Node.js 20.</li> <li>Dependencies have been updated.</li> </ul> <h2>[2.2.0] - 2023-09-07</h2> <h3>Added</h3> <ul> <li>Support alternative registries with the <code>registry</code> and <code>index</code> input parameters.</li> </ul> <h3>Changed</h3> <ul> <li>Crate versions are fetched from the sparse index instead of the crates.io API.</li> </ul> <h2>[2.1.0] - 2023-06-09</h2> <h3>Added</h3> <ul> <li>Git installation is now supported with the <code>git</code> input parameter. You can specify a branch, tag or commit hash.</li> </ul> <h2>[2.0.0] - 2023-03-23</h2> <h3>Added</h3> <ul> <li>Name and version are shown in the cache key. This allow to identify cache entries in the cache management UI more easily.</li> </ul> <h3>Changed</h3> <ul> <li><strong>Breaking:</strong> The action now runs on Node.js 16.</li> <li><strong>Breaking:</strong> Versions without semver range (e.g. <code>1.2.3</code>) are now considered as exact versions.</li> <li><strong>Breaking:</strong> Set <code>--locked</code> by default. <code>locked</code> input is no longer deprecated.</li> <li>Various code improvements and refactoring.</li> </ul> <h2>[1.3.1] - 2023-02-15</h2> <h3>Fixed</h3> <ul> <li>Use <code>semver</code> instead of <code>compare-versions</code> to fix version resolution issues.</li> <li>Dependencies have been updated. This removes the warning about <code>set-output</code> being deprecated.</li> </ul> <h2>[1.3.0] - 2022-06-14</h2> <h3>Added</h3> <ul> <li>Add <code>args</code> input to add additional arguments to the <code>cargo install</code> command.</li> </ul> <h3>Deprecated</h3> <ul> <li><code>locked</code> input is deprecated, use the <code>args</code> input with <code>--locked</code> instead.</li> </ul> <h2>[1.2.0] - 2022-03-16</h2> <h3>Added</h3> <ul> <li>Add <code>locked</code> input to add <code>--locked</code> argument to <code>cargo install</code> command.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/baptiste0928/cargo-install/commit/1cd874a5478fdca35d868ccc74640c5aabbb8f1b"><code>1cd874a</code></a> docs: update version number in readme</li> <li><a href="https://github.com/baptiste0928/cargo-install/commit/9129fcc8bf1a5a716b506fb973156d212332abc3"><code>9129fcc</code></a> chore: release 3.0.0</li> <li><a href="https://github.com/baptiste0928/cargo-install/commit/c4ca10887d195f8cca9582e1bd384c8d194c424b"><code>c4ca108</code></a> feat: use node 20 and update dependencies</li> <li><a href="https://github.com/baptiste0928/cargo-install/commit/313e40291ae18253c74cab6ad775cd8471b6d0eb"><code>313e402</code></a> feat: add os version to cache key</li> <li>See full diff in <a href="https://github.com/baptiste0928/cargo-install/compare/v2...v3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=baptiste0928/cargo-install&package-manager=github_actions&previous-version=2&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:10:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#2831
No description provided.