Skip to content

Commit c85723a

Browse files
authored
chore(v0.3.0): start defaulting to stable (#60)
* 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
1 parent 08fa32f commit c85723a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
3232
### Inputs
3333
34-
| **Name** | **Required** | **Default** | **Description** | **Type** |
35-
| -------------------- | ------------ | ------------------------------------- | ------------------------------------------------------------------------------------------------------------ | -------- |
36-
| `cache` | No | `true` | Whether to cache RPC responses or not. | bool |
37-
| `version` | No | `nightly` | Version to install, e.g. `nightly` or `1.0.0`. **Note:** Foundry only has nightly builds for the time being. | string |
38-
| `cache-key` | No | `${{ github.job }}-${{ github.sha }}` | The cache key to use for caching. | string |
39-
| `cache-restore-keys` | No | `[${{ github.job }}-]` | The cache keys to use for restoring the cache. | string[] |
34+
| **Name** | **Required** | **Default** | **Description** | **Type** |
35+
| -------------------- | ------------ | ------------------------------------- | -------------------------------------------------------- | -------- |
36+
| `cache` | No | `true` | Whether to cache RPC responses or not. | bool |
37+
| `version` | No | `stable` | Version to install, e.g. `stable`, `nightly` or `0.3.0`. | string |
38+
| `cache-key` | No | `${{ github.job }}-${{ github.sha }}` | The cache key to use for caching. | string |
39+
| `cache-restore-keys` | No | `[${{ github.job }}-]` | The cache keys to use for restoring the cache. | string[] |
4040

4141
### RPC Caching
4242

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ inputs:
2929
This key is used to identify the cache to restore. If not provided, a default key consisting of the job id is used.
3030
required: false
3131
version:
32-
default: "nightly"
32+
default: "stable"
3333
description: |
3434
Foundry version.
3535
3636
This version number has to match a released version of Foundry.
37-
The default value is `nightly`, which will pull the latest nightly build.
37+
The default value is `stable`, which will pull the latest stable build.
3838
required: false
3939

4040
runs:
41-
using: "node20"
41+
using: "node23"
4242
main: "dist/index.js"
4343
post: "dist/save/index.js"
4444
post-if: success()

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@foundry-rs/foundry-toolchain",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"license": "SEE LICENSE IN LICENSE",
55
"main": "dist/index.js",
66
"keywords": [

0 commit comments

Comments
 (0)