Skip to content

Commit

Permalink
Change occurences of actions/setup-elixir to erlef/setup-elixir (#2)
Browse files Browse the repository at this point in the history
* Change all occurrences of actions/setup-elixir to erlef/setup-elixir
  • Loading branch information
starbelly authored Jan 19, 2021
1 parent 560ba82 commit b9b3074
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
elixir-version: '1.11.0-rc.0'
steps:
- uses: actions/checkout@v2
- name: Use actions/setup-elixir
- name: Use erlef/setup-elixir
id: setup-elixir
uses: ./
with:
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Contributing

[fork]: https://github.com/actions/setup-elixir/fork
[pr]: https://github.com/actions/setup-elixir/compare
[code-of-conduct]: https://github.com/actions/setup-elixir/blob/main/CODE_OF_CONDUCT.md
[fork]: https://github.com/erlef/setup-elixir/fork
[pr]: https://github.com/erlef/setup-elixir/compare
[code-of-conduct]: https://github.com/erlef/setup-elixir/blob/main/CODE_OF_CONDUCT.md

Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# setup-elixir

[![](https://github.com/actions/setup-elixir/workflows/Test/badge.svg)](https://github.com/actions/setup-elixir/actions)
[![](https://github.com/actions/setup-elixir/workflows/Licensed/badge.svg)](https://github.com/actions/setup-elixir/actions)
[![](https://github.com/erlef/setup-elixir/workflows/Test/badge.svg)](https://github.com/erlef/setup-elixir/actions)
[![](https://github.com/erlef/setup-elixir/workflows/Licensed/badge.svg)](https://github.com/erlef/setup-elixir/actions)

This action sets up an Elixir environment for use in a GitHub Actions
workflow by:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
- uses: erlef/setup-elixir@v1
with:
otp-version: '22.2'
elixir-version: '1.9.4'
Expand All @@ -62,7 +62,7 @@ jobs:
elixir: ['1.8.2', '1.9.4']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
- uses: erlef/setup-elixir@v1
with:
otp-version: '22.2'
elixir-version: '1.9.4'
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2962,7 +2962,7 @@ async function installOTP(version, osVersion) {
}

throw new Error(
'@actions/setup-elixir only supports Ubuntu Linux at this time'
'@erlef/setup-elixir only supports Ubuntu Linux at this time'
)
}

Expand Down Expand Up @@ -3352,7 +3352,7 @@ async function main() {
function checkPlatform() {
if (process.platform !== 'linux')
throw new Error(
'@actions/setup-elixir only supports Ubuntu Linux at this time'
'@erlef/setup-elixir only supports Ubuntu Linux at this time'
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ async function installOTP(version, osVersion) {
}

throw new Error(
'@actions/setup-elixir only supports Ubuntu Linux at this time'
'@erlef/setup-elixir only supports Ubuntu Linux at this time'
)
}
2 changes: 1 addition & 1 deletion src/setup-elixir.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function main() {
function checkPlatform() {
if (process.platform !== 'linux')
throw new Error(
'@actions/setup-elixir only supports Ubuntu Linux at this time'
'@erlef/setup-elixir only supports Ubuntu Linux at this time'
)
}

Expand Down

0 comments on commit b9b3074

Please sign in to comment.