Skip to content

Commit 9a9d73a

Browse files
authored
Merge pull request #413 from sleipnir/fix/ubuntu-deprecated-issue
Fix: deprecated s.o base image for github workflows
2 parents 5239816 + 4e156b0 commit 9a9d73a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
check_format:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
name: Check format
1515
steps:
1616
- uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
2929
- name: Check format
3030
run: mix format --check-formatted
3131
tests:
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-latest
3333
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
3434
strategy:
3535
matrix:
@@ -56,7 +56,7 @@ jobs:
5656
- name: Run Tests
5757
run: mix test
5858
interop-tests:
59-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-latest
6060
name: Interop tests
6161
needs: check_format
6262
if: ${{ github.ref != 'refs/heads/master' }}
@@ -80,7 +80,7 @@ jobs:
8080
working-directory: ./interop
8181

8282
interop-tests-all:
83-
runs-on: ubuntu-20.04
83+
runs-on: ubuntu-latest
8484
name: Interop tests OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
8585
needs: check_format
8686
if: ${{ github.ref == 'refs/heads/master' }}
@@ -111,7 +111,7 @@ jobs:
111111
working-directory: ./interop
112112

113113
check_release:
114-
runs-on: ubuntu-20.04
114+
runs-on: ubuntu-latest
115115
name: Check release
116116
needs: check_format
117117
steps:

0 commit comments

Comments
 (0)