Skip to content

Commit

Permalink
Set jolie 1.11.0 version as a default (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabasoad authored May 27, 2023
1 parent d7c92a2 commit f60b9c1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu", "windows", "macos"]
version: ["1.11.0-beta", "1.10.13", "1.10.0"]
version: ["1.11.0", "1.10.13", "1.10.0"]
include:
- version: "1.11.0-beta"
- version: "1.11.0"
java-version: "11"
- version: "1.10.13"
java-version: "11"
Expand All @@ -33,7 +33,7 @@ jobs:
- os: "windows"
version: "1.10.0"
- os: "macos"
version: "1.11.0-beta"
version: "1.11.0"
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
matrix:
include:
- image: "alpine"
version: "1.11.0-beta"
version: "1.11.0"
java-version: "11"
- image: "alpine"
version: "1.10.13"
Expand Down
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![Release](https://img.shields.io/github/v/release/fabasoad/setup-jolie-action?include_prereleases)
![Functional Tests](https://github.com/fabasoad/setup-jolie-action/workflows/Functional%20Tests/badge.svg)
![functional-tests](https://github.com/fabasoad/setup-jolie-action/actions/workflows/functional-tests.yml/badge.svg)
![pre-commit](https://github.com/fabasoad/setup-jolie-action/actions/workflows/pre-commit.yml/badge.svg)

This action installs [Jolie](https://www.jolie-lang.org).
Expand All @@ -17,9 +17,9 @@ the instructions [here](https://www.jolie-lang.org/downloads.html)).
## Inputs

<!-- prettier-ignore-start -->
| Name | Required | Description | Default | Possible values |
|---------|----------|--------------------------------------------------------------------------------------|-----------|-----------------|
| version | No | Version of `Jolie` that can be found [here](https://github.com/jolie/jolie/releases) | `1.10.13` | &lt;String&gt; |
| Name | Required | Description | Default | Possible values |
|---------|----------|--------------------------------------------------------------------------------------|----------|-----------------|
| version | No | Version of `Jolie` that can be found [here](https://github.com/jolie/jolie/releases) | `1.11.0` | &lt;String&gt; |
<!-- prettier-ignore-end -->

## Example usage
Expand Down Expand Up @@ -70,10 +70,7 @@ jobs:
steps:
- uses: actions/checkout@main
- name: Install tools
run: |
apk update
apk add --update maven
shell: sh
run: apk add --update maven
- uses: fabasoad/setup-jolie-action@main
with:
version: 1.10.13
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
version:
description: "Jolie version."
required: false
default: "1.10.13"
default: "1.11.0"
runs:
using: "composite"
steps:
Expand Down

0 comments on commit f60b9c1

Please sign in to comment.