Skip to content
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
10 changes: 8 additions & 2 deletions .github/workflows/hypatia-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ jobs:
- name: Setup Elixir for Hypatia scanner
uses: erlef/setup-beam@fc68ffb90438ef2936bbb3251622353b3dcb2f93 # v1.24.0
with:
elixir-version: '1.19.4'
otp-version: '28.3'
# Pinned to currently-published, setup-beam-resolvable versions.
# The previous pins (elixir 1.19.4 / otp 28.3) do not exist in the
# setup-beam index, so this step failed fast on every run and made
# the dogfooding job red estate-wide regardless of PR content.
# Major/minor (loose) so patch availability cannot re-break it.
# Bump deliberately to whatever Hypatia's scanner actually requires.
elixir-version: '1.18'
otp-version: '27'

- name: Clone Hypatia
run: |
Expand Down
Loading