Skip to content

Commit

Permalink
chore(v0.3.0): start defaulting to stable (#60)
Browse files Browse the repository at this point in the history
* start defaulting to stable

* bump deps

* update version number to reflect v1.2.0

* bump version to 1.3.0

* point to existing tag

* bump node to 23
  • Loading branch information
zerosnacks authored Dec 20, 2024
1 parent 08fa32f commit c85723a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
### Inputs
| **Name** | **Required** | **Default** | **Description** | **Type** |
| -------------------- | ------------ | ------------------------------------- | ------------------------------------------------------------------------------------------------------------ | -------- |
| `cache` | No | `true` | Whether to cache RPC responses or not. | bool |
| `version` | No | `nightly` | Version to install, e.g. `nightly` or `1.0.0`. **Note:** Foundry only has nightly builds for the time being. | string |

This comment has been minimized.

Copy link
@TheNotorious1979

TheNotorious1979 Dec 23, 2024

action.yml

| `cache-key` | No | `${{ github.job }}-${{ github.sha }}` | The cache key to use for caching. | string |
| `cache-restore-keys` | No | `[${{ github.job }}-]` | The cache keys to use for restoring the cache. | string[] |
| **Name** | **Required** | **Default** | **Description** | **Type** |
| -------------------- | ------------ | ------------------------------------- | -------------------------------------------------------- | -------- |
| `cache` | No | `true` | Whether to cache RPC responses or not. | bool |
| `version` | No | `stable` | Version to install, e.g. `stable`, `nightly` or `0.3.0`. | string |
| `cache-key` | No | `${{ github.job }}-${{ github.sha }}` | The cache key to use for caching. | string |
| `cache-restore-keys` | No | `[${{ github.job }}-]` | The cache keys to use for restoring the cache. | string[] |

### RPC Caching

Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ inputs:
This key is used to identify the cache to restore. If not provided, a default key consisting of the job id is used.
required: false
version:
default: "nightly"
default: "stable"
description: |
Foundry version.
This version number has to match a released version of Foundry.
The default value is `nightly`, which will pull the latest nightly build.
The default value is `stable`, which will pull the latest stable build.
required: false

runs:
using: "node20"
using: "node23"
main: "dist/index.js"
post: "dist/save/index.js"
post-if: success()
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@foundry-rs/foundry-toolchain",
"version": "1.2.0",
"version": "1.3.0",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"keywords": [
Expand Down

0 comments on commit c85723a

Please sign in to comment.