From 4124d3c7fa68de2de16e3899c2af6ef3e7860318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A8s=20Maci=C3=A0?= Date: Mon, 16 Dec 2024 17:25:52 +0100 Subject: [PATCH] upgrade github actions due deprecation notice (#8) * upgrade github actions due deprecation notice * upgrade actions/cache to v4 --- .github/workflows/elixir.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 4478327..6e146d5 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -35,9 +35,9 @@ jobs: - name: test run: mix test --cover --trace - name: archive code coverage - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: - name: cover + name: cover-${{ matrix.runs-on }} path: cover static_code_analysis: @@ -54,7 +54,7 @@ jobs: mix local.hex --force mix deps.get --only dev - name: plt cache - uses: actions/cache@v1.1.0 + uses: actions/cache@v4 with: path: _build key: ${{ runner.os }}-plt-${{ env.GITHUB_REF }}