diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 13600f18..2dc0104f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -29,15 +29,15 @@ jobs: --health-retries 5 steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Setup Elixir uses: erlef/setup-beam@v1 with: version-file: .tool-versions version-type: strict - - name: Checkout Repository - uses: actions/checkout@v4 - - name: Cache deps uses: actions/cache@v4 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f673916..b6730449 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,14 +29,14 @@ jobs: --health-retries 5 steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Setup Elixir uses: erlef/setup-beam@v1 with: - otp-version: ${{ env.OTP_VERSION }} - elixir-version: ${{ env.ELIXIR_VERSION }} - - - name: Checkout Repository - uses: actions/checkout@v4 + version-file: .tool-versions + version-type: strict - name: Cache deps uses: actions/cache@v4