This commit is contained in:
Jeff Dickey 2024-10-26 06:51:32 -05:00
parent f2a7466821
commit 943808f3f1
No known key found for this signature in database
GPG key ID: 584DADE86724B407
3 changed files with 15 additions and 8 deletions

View file

@ -1,7 +1,14 @@
# Changelog # Changelog
--- ---
## [2.1.2](https://github.com/jdx/mise-action/compare/v2.1.1..2.1.2) - 2024-10-25 ## [2.1.3](https://github.com/jdx/mise-action/compare/v2.1.2..2.1.3) - 2024-10-26
### 🐛 Bug Fixes
- add `install_args` hash to cache key (#136) by [@risu729](https://github.com/risu729) in [#136](https://github.com/jdx/mise-action/pull/136)
---
## [2.1.2](https://github.com/jdx/mise-action/compare/v2.1.1..v2.1.2) - 2024-10-25
### 🚀 Features ### 🚀 Features
@ -12,6 +19,10 @@
- cache_save boolean bug (#135) by [@jdx](https://github.com/jdx) in [#135](https://github.com/jdx/mise-action/pull/135) - cache_save boolean bug (#135) by [@jdx](https://github.com/jdx) in [#135](https://github.com/jdx/mise-action/pull/135)
- renovate artifact updates by [@jdx](https://github.com/jdx) in [e3088a5](https://github.com/jdx/mise-action/commit/e3088a551cec0996df9a8c8865dd72bde3ce9db0) - renovate artifact updates by [@jdx](https://github.com/jdx) in [e3088a5](https://github.com/jdx/mise-action/commit/e3088a551cec0996df9a8c8865dd72bde3ce9db0)
### 🔍 Other Changes
- 2.1.2 by [@jdx](https://github.com/jdx) in [4d056cf](https://github.com/jdx/mise-action/commit/4d056cf31b20dbda64e7e44dc5da5565707b00d3)
### New Contributors ### New Contributors
* @xremming made their first contribution in [#129](https://github.com/jdx/mise-action/pull/129) * @xremming made their first contribution in [#129](https://github.com/jdx/mise-action/pull/129)
@ -69,10 +80,6 @@
- rebuild by [@jdx](https://github.com/jdx) in [d0dc8c8](https://github.com/jdx/mise-action/commit/d0dc8c81e39f1b4571ed0668cd7fa6be57534ad2) - rebuild by [@jdx](https://github.com/jdx) in [d0dc8c8](https://github.com/jdx/mise-action/commit/d0dc8c81e39f1b4571ed0668cd7fa6be57534ad2)
### New Contributors
* @risu729 made their first contribution in [#86](https://github.com/jdx/mise-action/pull/86)
--- ---
## [2.0.5](https://github.com/jdx/mise-action/compare/v2.0.4..v2.0.5) - 2024-06-01 ## [2.0.5](https://github.com/jdx/mise-action/compare/v2.0.4..v2.0.5) - 2024-06-01

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "mise-action", "name": "mise-action",
"version": "2.1.2", "version": "2.1.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "mise-action", "name": "mise-action",
"version": "2.1.2", "version": "2.1.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/cache": "^3.2.2", "@actions/cache": "^3.2.2",

View file

@ -1,7 +1,7 @@
{ {
"name": "mise-action", "name": "mise-action",
"description": "mise tool setup action", "description": "mise tool setup action",
"version": "2.1.2", "version": "2.1.3",
"author": "jdx", "author": "jdx",
"private": true, "private": true,
"repository": { "repository": {