Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
id: checkout
Expand All @@ -35,5 +34,5 @@ jobs:
id: test-action-with-plugins
uses: ./
with:
wash-version: "wash-v1.0.0-rc.1"
wash-version: "wash-v1.0.0-rc.2"
plugins: "ghcr.io/cosmonic-labs/plugins/openapi2mcp:0.3.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add the following step to your workflow to install `wash`:

| Name | Description | Default |
| ------------ | --------------------------------------------------------------------------------- | ---------------- |
| wash-version | The version of wash to install. Note this uses tags until 1.0 is released | wash-v1.0.0-rc.1 |
| wash-version | The version of wash to install. Note this uses tags until 1.0 is released | wash-v1.0.0-rc.2 |
| plugins | YAML array of plugin URIs to install (OCI artifacts from registries like ghcr.io) | (none) |

### Plugin Caching
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ branding:
# Define your inputs here.
inputs:
wash-version:
description: "The version of wash to install (default: latest), Examples: 0.51, 0.51.1, ^0.51, ~0.51, wash-v1.0.0-rc.1, latest"
description: "The version of wash to install (default: latest), Examples: 0.51, 0.51.1, ^0.51, ~0.51, wash-v1.0.0-rc.2, latest"
required: false
default: "wash-v1.0.0-rc.1"
default: "wash-v1.0.0-rc.2"
plugins:
description: "Comma-delimited list of plugin URIs to install (e.g., 'ghcr.io/wasmcloud/wash-plugin:latest,ghcr.io/example/other-plugin:v1.0')"
required: false
Expand Down