diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c5102c2..fc9e2bb7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42f15214..6e0745ce 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. diff --git a/README.md b/README.md index 1834e5ea..28e1b58e 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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' @@ -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}} @@ -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' diff --git a/dist/index.js b/dist/index.js index c8a7ccc7..90404287 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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' ) } @@ -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' ) } diff --git a/src/installer.js b/src/installer.js index a64b23c5..e7022a19 100644 --- a/src/installer.js +++ b/src/installer.js @@ -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' ) } diff --git a/src/setup-elixir.js b/src/setup-elixir.js index a4242808..6ca4ca88 100644 --- a/src/setup-elixir.js +++ b/src/setup-elixir.js @@ -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' ) }