From f56051b60252eeb0865da41051ed4898fb91f4fa Mon Sep 17 00:00:00 2001 From: Andreas Hasselberg <andreas.hasselberg@gmail.com> Date: Wed, 6 Nov 2024 20:32:35 +0100 Subject: [PATCH 1/2] upgrade actions --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8fa510b..61b884b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,16 +17,16 @@ jobs: image: erlang:${{ matrix.otp-version }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache Hex packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.cache/rebar3/hex/hexpm/packages key: ${{ runner.os }}-hex-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.lock')) }} restore-keys: | ${{ runner.os }}-hex- - name: Cache Dialyzer PLTs - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.cache/rebar3/rebar3_*.plt key: ${{ runner.os }}-dialyzer-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.config')) }} From 98d75a22708140e811c89529d48a60b8bded6485 Mon Sep 17 00:00:00 2001 From: Andreas Hasselberg <andreas.hasselberg@gmail.com> Date: Wed, 6 Nov 2024 20:32:45 +0100 Subject: [PATCH 2/2] Fix name of artifact --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61b884b..18fb0a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,6 +45,5 @@ jobs: - name: Publish Documentation uses: actions/upload-artifact@v4 with: - name: edoc_otp${{ matrix.otp-version }} + name: edoc OTP${{ matrix.otp-version }} path: doc - overwrite: true