Skip to content

Commit

Permalink
Set default version to 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jan 5, 2024
1 parent 131fc75 commit a625c89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ steps:
- name: Setup Spice
uses: spicelang/spice-setup-action@v1
with:
spice-version: 0.18.5 # The Spice version to setup. If omitted, the latest version will be taken
spice-version: 0.19.0 # The Spice version to setup. If omitted, the latest version will be taken

- run: spice run example.spice
```
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
spice: [ '0.17.0', '0.18.0' ]
spice: [ '0.18.0', '0.19.0' ]
name: Setup Spice v${{ matrix.spice }}
steps:
- name: Checkout
Expand Down
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.18';
const defaultVersion = '0.19';
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.18';
const defaultVersion: string = '0.19';

export async function run() {
try {
Expand Down

0 comments on commit a625c89

Please sign in to comment.