Skip to content

Commit

Permalink
Merge branch 'master' into release/v1
Browse files Browse the repository at this point in the history
  • Loading branch information
e1himself committed Nov 3, 2022
2 parents 88e5a33 + 385dc45 commit 4f49728
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# IDE
.idea/

# Build-time folders
dist

Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ Read more about Goss at https://goss.rocks/.

### `version`

**Optional** The required version of Goss to install. Default `"v0.3.16"`.
**Optional** The required version of Goss to install. Default `"v0.3.20"`.

## Example usage

```yml
uses: e1himself/goss-installation-action
with:
version: 'v0.3.16'
version: 'v0.3.20'
```
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ author: 'ivan.voskoboiynk@gmail.com'
inputs:
version:
description: 'Goss release version to install'
default: 'v0.3.9'
default: 'v0.3.20'
required: false
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'briefcase'
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as tc from '@actions/tool-cache'
import fs from 'fs'

const ARCH = 'amd64'
const DEFAULT_VERSION = 'v0.3.16'
const DEFAULT_VERSION = 'v0.3.20'
const ERROR_MESSAGE = 'Failed to install goss'

interface CommandsMap {
Expand Down

0 comments on commit 4f49728

Please sign in to comment.