From f5875e0b714458d0341f9408340ff81123a80f42 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Mon, 27 Apr 2020 15:33:04 -0600 Subject: [PATCH 1/3] use setup-erlang instead of container for github action nightly --- .github/workflows/nightly.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 8c2021df..ded18f67 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,11 +10,12 @@ jobs: name: Publish escript for every merge to master runs-on: ubuntu-latest - container: - image: erlang:19 - steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + + - uses: gleam-lang/setup-erlang@v1.0.0 + with: + otp-version: 19.3.6.13 - name: Compile run: ./bootstrap - name: CT tests From 10bd7fbd23f521a6d8acf7cb9997c6818a310713 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Tue, 28 Apr 2020 08:01:51 -0600 Subject: [PATCH 2/3] use actions/checkout version 2 in main github action --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 09833dd3..1ceeea8e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: image: erlang:${{ matrix.otp_version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Compile run: ./bootstrap - name: CT tests From adac0604ad48b28235a70208ae0a6b337b16a036 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Tue, 28 Apr 2020 08:02:18 -0600 Subject: [PATCH 3/3] use checkout v2 in publish github action --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d65db0bb..fb633a44 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: image: erlang:19 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Compile run: ./bootstrap - name: CT tests