From 8d90281adf86a44b3b5cab1028068d0fc56d50a3 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 8 Nov 2019 16:38:35 +0000 Subject: [PATCH 1/2] Update description --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c88a744..b54085b 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: Setup Elixir -description: Set up an Elixir/OTP environment and add it to the PATH +description: Set up a specific version of OTP and Elixir and add the command-line tools to the PATH author: GitHub branding: color: blue From ec8659d099810fcd30fae58650f454ba75aa8774 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 8 Nov 2019 16:38:58 +0000 Subject: [PATCH 2/2] README: suggest people use v1 --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8630f37..c5a2267 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1.0.0 - - uses: actions/setup-elixir@v1.0.0 + - uses: actions/checkout@v1 + - uses: actions/setup-elixir@v1 with: otp-version: 22.x elixir-version: 1.9.x @@ -52,8 +52,8 @@ jobs: otp: [20.x, 21.x, 22.x] elixir: [1.8.x, 1.9.x] steps: - - uses: actions/checkout@v1.0.0 - - uses: actions/setup-elixir@v1.0.0 + - uses: actions/checkout@v1 + - uses: actions/setup-elixir@v1 with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}} @@ -81,8 +81,8 @@ jobs: --health-retries 5 steps: - - uses: actions/checkout@v1.0.0 - - uses: actions/setup-elixir@v1.0.0 + - uses: actions/checkout@v1 + - uses: actions/setup-elixir@v1 with: otp-version: 22.x elixir-version: 1.9.x