From d029cc5da63cfae95063aa8f67a8a336084e73f5 Mon Sep 17 00:00:00 2001 From: elbrujohalcon Date: Mon, 16 Jun 2025 14:38:54 +0200 Subject: [PATCH 1/3] elvis_core.4.1.1- Upgrade elvis_core to 4.1.1 --- plugins.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.mk b/plugins.mk index d239d50..88fe444 100644 --- a/plugins.mk +++ b/plugins.mk @@ -4,7 +4,7 @@ .PHONY: elvis distclean-elvis # Configuration. -ELVIS_VERSION ?= 4.1.0 +ELVIS_VERSION ?= 4.1.1 ELVIS_CONFIG ?= $(CURDIR)/elvis.config ELVIS ?= $(CURDIR)/elvis From 1dd134a02a400112dc1330d3489ba720e5d2709f Mon Sep 17 00:00:00 2001 From: elbrujohalcon Date: Mon, 16 Jun 2025 14:44:32 +0200 Subject: [PATCH 2/3] elvis_core.4.1.1- Use ubuntu 24.04 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b447d07..822add1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: jobs: test-on-ubuntu: name: Test on Ubuntu - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 - run: test/run.sh From d3f8d261bc3d771f4b4311c447b5a49f272d2803 Mon Sep 17 00:00:00 2001 From: elbrujohalcon Date: Mon, 16 Jun 2025 14:46:32 +0200 Subject: [PATCH 3/3] elvis_core.4.1.1- Setup beam --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 822add1..98f5829 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,13 +10,18 @@ jobs: name: Test on Ubuntu runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 + id: setup-beam + with: + otp-version: '28' + rebar3-version: '3.25' - run: test/run.sh test-on-mac: name: Test on MacOS runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: brew install erlang make - run: PATH="$(brew --prefix)/opt/make/libexec/gnubin:$PATH" test/run.sh