Commit 4b11ce8
ci: disable setup-beam problem matchers to quiet dep-warning annotations (#10)
## Summary
Closes #9 (partially - see caveat below).
- `erlef/setup-beam@v1` registers GitHub Actions problem matchers by
default (`disable_problem_matchers: false`), which scan mix/erlc
compiler output and promote matching lines into annotations. That's what
was turning postgrex/rewrite's deprecated `xref: [exclude: ...]` and
yamerl's deprecated `catch ...` syntax - both harmless compiler warnings
from third-party deps - into annotation clutter on every build.
- All three of those deps (`postgrex`, `rewrite`, `yamerl`) are already
at their latest published Hex versions (verified via `mix hex.outdated
--all`), so there's no version bump that fixes the underlying warnings -
they're upstream-only until those maintainers migrate. Setting
`disable_problem_matchers: true` on all three `erlef/setup-beam@v1`
steps (`ci.yaml`, both jobs in `burrito-release.yaml`) silences the
annotation promotion while leaving the actual compiler output visible in
the raw logs.
**Caveat**: the Node.js 20 deprecation annotation
(`mlugg/setup-zig@v2.2.1`) is *not* addressed by this PR - we're already
pinned to that action's latest release (`v2.2.1`), and its `action.yml`
still declares `using: 'node20'`. That's on the action's maintainer to
fix; nothing to change here until they bump it.
## Test plan
- [x] Validated both edited workflow YAML files parse correctly (`ruby
-ryaml`)
- [x] Confirmed via `mix hex.outdated --all` that
postgrex/rewrite/yamerl/yaml_elixir are all already at their latest
Hex-published versions - the warnings aren't from us being behind
- [x] Confirmed `mlugg/setup-zig`'s latest release (`v2.2.1`) still
targets `node20` in its own `action.yml` - not fixable by re-pinning
- [ ] Next real CI run on this branch should show 0 annotations from
setup-beam's matchers (xref + catch warnings gone), with only the Node20
one remaining
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>1 parent 20121cd commit 4b11ce8
2 files changed
Lines changed: 18 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
37 | 43 | | |
38 | 44 | | |
39 | 45 | | |
| |||
67 | 73 | | |
68 | 74 | | |
69 | 75 | | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
70 | 82 | | |
71 | 83 | | |
72 | 84 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
24 | 30 | | |
25 | 31 | | |
26 | 32 | | |
| |||
0 commit comments