From 8ffc18bac3f8e818a494675da6abd558d231560a Mon Sep 17 00:00:00 2001 From: elbrujohalcon Date: Wed, 23 Oct 2024 15:23:41 +0200 Subject: [PATCH] elbrujohalcon.otp_formatter.update- Update actions for GH --- .github/workflows/erlang.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index f75915c..99cdf3a 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -17,19 +17,19 @@ jobs: rebar: ['3.24'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: erlef/setup-beam@v1 id: setup-beam with: otp-version: ${{matrix.otp}} rebar3-version: ${{matrix.rebar}} - name: Restore _build - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: _build key: _build-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}} - name: Restore rebar3's cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/rebar3 key: rebar3-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}}