Change occurences of actions/setup-elixir to erlef/setup-elixir (#2)

b9b3074 · Bryan Paxton · 2021-01-19 21:20

6 files +13 -13
Message
{commit_body(@commit)}

Files changed

modified .github/workflows/test.yml
+1 −1
@@ -39,7 +39,7 @@ jobs:
39 39 elixir-version: '1.11.0-rc.0'
40 40 steps:
41 41 - uses: actions/checkout@v2
42 - name: Use actions/setup-elixir
42 + - name: Use erlef/setup-elixir
43 43 id: setup-elixir
44 44 uses: ./
45 45 with:
modified CONTRIBUTING.md
+3 −3
@@ -1,8 +1,8 @@
1 1 ## Contributing
2 2
3 [fork]: https://github.com/actions/setup-elixir/fork
4 [pr]: https://github.com/actions/setup-elixir/compare
5 [code-of-conduct]: https://github.com/actions/setup-elixir/blob/main/CODE_OF_CONDUCT.md
3 +[fork]: https://github.com/erlef/setup-elixir/fork
4 +[pr]: https://github.com/erlef/setup-elixir/compare
5 +[code-of-conduct]: https://github.com/erlef/setup-elixir/blob/main/CODE_OF_CONDUCT.md
6 6
7 7 Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
8 8
modified README.md
+5 −5
@@ -1,7 +1,7 @@
1 1 # setup-elixir
2 2
3 [![](https://github.com/actions/setup-elixir/workflows/Test/badge.svg)](https://github.com/actions/setup-elixir/actions)
4 [![](https://github.com/actions/setup-elixir/workflows/Licensed/badge.svg)](https://github.com/actions/setup-elixir/actions)
3 +[![](https://github.com/erlef/setup-elixir/workflows/Test/badge.svg)](https://github.com/erlef/setup-elixir/actions)
4 +[![](https://github.com/erlef/setup-elixir/workflows/Licensed/badge.svg)](https://github.com/erlef/setup-elixir/actions)
5 5
6 6 This action sets up an Elixir environment for use in a GitHub Actions
7 7 workflow by:
@@ -39,7 +39,7 @@ jobs:
39 39 runs-on: ubuntu-latest
40 40 steps:
41 41 - uses: actions/checkout@v2
42 - uses: actions/setup-elixir@v1
42 + - uses: erlef/setup-elixir@v1
43 43 with:
44 44 otp-version: '22.2'
45 45 elixir-version: '1.9.4'
@@ -62,7 +62,7 @@ jobs:
62 62 elixir: ['1.8.2', '1.9.4']
63 63 steps:
64 64 - uses: actions/checkout@v2
65 - uses: actions/setup-elixir@v1
65 + - uses: erlef/setup-elixir@v1
66 66 with:
67 67 otp-version: ${{matrix.otp}}
68 68 elixir-version: ${{matrix.elixir}}
@@ -93,7 +93,7 @@ jobs:
93 93
94 94 steps:
95 95 - uses: actions/checkout@v2
96 - uses: actions/setup-elixir@v1
96 + - uses: erlef/setup-elixir@v1
97 97 with:
98 98 otp-version: '22.2'
99 99 elixir-version: '1.9.4'
modified dist/index.js
+2 −2
@@ -2962,7 +2962,7 @@ async function installOTP(version, osVersion) {
2962 2962 }
2963 2963
2964 2964 throw new Error(
2965 '@actions/setup-elixir only supports Ubuntu Linux at this time'
2965 + '@erlef/setup-elixir only supports Ubuntu Linux at this time'
2966 2966 )
2967 2967 }
2968 2968
@@ -3352,7 +3352,7 @@ async function main() {
3352 3352 function checkPlatform() {
3353 3353 if (process.platform !== 'linux')
3354 3354 throw new Error(
3355 '@actions/setup-elixir only supports Ubuntu Linux at this time'
3355 + '@erlef/setup-elixir only supports Ubuntu Linux at this time'
3356 3356 )
3357 3357 }
3358 3358
modified src/installer.js
+1 −1
@@ -29,6 +29,6 @@ async function installOTP(version, osVersion) {
29 29 }
30 30
31 31 throw new Error(
32 '@actions/setup-elixir only supports Ubuntu Linux at this time'
32 + '@erlef/setup-elixir only supports Ubuntu Linux at this time'
33 33 )
34 34 }
modified src/setup-elixir.js
+1 −1
@@ -54,7 +54,7 @@ async function main() {
54 54 function checkPlatform() {
55 55 if (process.platform !== 'linux')
56 56 throw new Error(
57 '@actions/setup-elixir only supports Ubuntu Linux at this time'
57 + '@erlef/setup-elixir only supports Ubuntu Linux at this time'
58 58 )
59 59 }
60 60

Parents: 560ba82