Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}

- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
key: builds@elixir-${{ steps.install.outputs.elixir-version }}-otp-${{ steps.install.outputs.otp-version }}-mix-${{ hashFiles('mix.lock') }}
path: |
Expand All @@ -102,12 +102,12 @@

- run: mix coveralls.github
working-directory: ./elixir
if: ${{ matrix.coveralls }}

Check failure on line 105 in .github/workflows/elixir.yml

View workflow job for this annotation

GitHub Actions / Actionlint

[actionlint] reported by reviewdog 🐶 property "coveralls" is not defined in object type {check_formatted: bool; credo: bool; dialyzer: bool; elixir: number; os: string; otp: number; warnings_as_errors: bool} [expression] Raw Output: e:.github/workflows/elixir.yml:105:17: property "coveralls" is not defined in object type {check_formatted: bool; credo: bool; dialyzer: bool; elixir: number; os: string; otp: number; warnings_as_errors: bool} [expression]
env:
GITHUB_TOKEN: ${{ github.token }}

- run: mix test
if: ${{ !matrix.coveralls }}

Check failure on line 110 in .github/workflows/elixir.yml

View workflow job for this annotation

GitHub Actions / Actionlint

[actionlint] reported by reviewdog 🐶 property "coveralls" is not defined in object type {check_formatted: bool; credo: bool; dialyzer: bool; elixir: number; os: string; otp: number; warnings_as_errors: bool} [expression] Raw Output: e:.github/workflows/elixir.yml:110:18: property "coveralls" is not defined in object type {check_formatted: bool; credo: bool; dialyzer: bool; elixir: number; os: string; otp: number; warnings_as_errors: bool} [expression]
working-directory: ./elixir

# Using MIX_QUIET=1 should work for this, except that with older versions
Expand All @@ -127,7 +127,7 @@
working-directory: ./elixir
if: matrix.credo

- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
key: plts@elixir-${{ steps.install.outputs.elixir-version }}-otp-${{ steps.install.outputs.otp-version }}-mix-${{ hashFiles('mix.lock') }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
otp-version: '27'
elixir-version: '1.18'

- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb #v5.0.1
with:
key: builds@elixir-${{ steps.install.outputs.elixir-version }}-otp-${{ steps.install.outputs.otp-version }}-mix-${{ hashFiles('mix.lock') }}
path: |
Expand Down
Loading