Skip to content

Commit

Permalink
Update default version
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jul 5, 2023
1 parent 13f800f commit fce6517
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.13.2 # The Spice version to setup. If omitted, the latest version will be taken
spice-version: 0.16.1 # The Spice version to setup. If omitted, the latest version will be taken
- run: spice run example.spice
```

Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
spice: [ '0.12.0', '0.13.0' ]
spice: [ '0.15.0', '0.16.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.13';
const defaultVersion = '0.16';
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.13';
const defaultVersion: string = '0.16';

export async function run() {
try {
Expand Down

0 comments on commit fce6517

Please sign in to comment.