From 02c824b5946feff76df1583f27bc164dad57cdc0 Mon Sep 17 00:00:00 2001 From: Maxime Curioni Date: Wed, 4 Sep 2024 14:33:18 -0600 Subject: [PATCH] Upgrade `actions/checkout` to v4 --- .github/workflows/ci.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 240f9e0..ffe105f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,12 +11,12 @@ jobs: container: image: erlang:${{ matrix.otp }}-alpine steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Compile - run: rebar3 compile - - name: Tests - run: | - rebar3 xref - rebar3 dialyzer - rebar3 ct + - name: Checkout + uses: actions/checkout@v4 + - name: Compile + run: rebar3 compile + - name: Tests + run: | + rebar3 xref + rebar3 dialyzer + rebar3 ct