Skip to content

Commit

Permalink
Update versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jun 14, 2024
1 parent 87f5ce4 commit fc3acfc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:
jobs:
test:
name: Test (Elixir ${{ matrix.elixir }}, OTP ${{ matrix.erlang }})
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- erlang: "25.1"
elixir: "1.14"
- erlang: "26.2"
elixir: "1.17"
lint: true
coverage: true
report: true
Expand All @@ -31,7 +31,7 @@ jobs:
FUZZINGSERVER_HOST: localhost

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install OTP and Elixir
uses: erlef/setup-beam@v1
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
deps
Expand All @@ -66,7 +66,7 @@ jobs:
if: ${{ matrix.lint }}

- name: Restore cached PLTs
uses: actions/cache@v3
uses: actions/cache@v4
id: plt_cache
with:
key: |
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Checkout gh-pages branch to ./gh-pages
if: github.ref == 'refs/heads/main' && matrix.report
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: gh-pages
path: ./gh-pages
Expand Down

0 comments on commit fc3acfc

Please sign in to comment.