Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: pin GitHub Actions workflows #30

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: Run the tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5

- name: Install elm tools and cache the ELM_HOME directory
uses: mpizenberg/elm-tooling-action@v1.2
uses: mpizenberg/elm-tooling-action@9938f6852d942f9714cac58761f378bf25881513
with:
cache-key: elm-test-${{ hashFiles('elm-tooling.json', 'elm.json') }}
cache-restore-key: elm-test
Expand All @@ -25,10 +25,10 @@ jobs:
name: Check formatting
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5

- name: Install elm tools and cache the ELM_HOME directory
uses: mpizenberg/elm-tooling-action@v1.2
uses: mpizenberg/elm-tooling-action@9938f6852d942f9714cac58761f378bf25881513
with:
cache-key: elm-format-${{ hashFiles('elm-tooling.json') }}
cache-restore-key: elm-format
Expand Down
Loading