Skip to content

Commit

Permalink
upgrade github actions due deprecation notice (#8)
Browse files Browse the repository at this point in the history
* upgrade github actions due deprecation notice

* upgrade actions/cache to v4
  • Loading branch information
mmacia authored Dec 16, 2024
1 parent fdbc0e5 commit 4124d3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit 4124d3c

Please sign in to comment.