Skip to content

Commit

Permalink
Set default version to 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jan 2, 2024
1 parent 9a3fb5f commit 131fc75
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ For detailed configuration information see the [action.yml](action.yml) file. He
```yml
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Spice
uses: spicelang/spice-setup-action@v1
with:
spice-version: 0.17.2 # The Spice version to setup. If omitted, the latest version will be taken
spice-version: 0.18.5 # The Spice version to setup. If omitted, the latest version will be taken

- run: spice run example.spice
```

Expand All @@ -38,11 +39,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
spice: [ '0.16.0', '0.17.0' ]
spice: [ '0.17.0', '0.18.0' ]
name: Setup Spice v${{ matrix.spice }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Spice v${{ matrix.spice }}
uses: spicelang/spice-setup-action@v1
Expand All @@ -55,4 +56,4 @@ jobs:
## Contribute to the project
If you want to contribute to this project, please ensure you comply with the [contribution guidelines](./CONTRIBUTING.md).

© ChilliBits 2021-2023
© ChilliBits 2021-2024
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ const installer = __importStar(__nccwpck_require__(1480));
const path_1 = __importDefault(__nccwpck_require__(1017));
const child_process_1 = __importDefault(__nccwpck_require__(2081));
const url_1 = __nccwpck_require__(7310);
const defaultVersion = '0.17';
const defaultVersion = '0.18';
async function run() {
try {
/*
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path from 'path';
import cp from 'child_process';
import {URL} from 'url';

const defaultVersion: string = '0.17';
const defaultVersion: string = '0.18';

export async function run() {
try {
Expand Down

0 comments on commit 131fc75

Please sign in to comment.