Skip to content

Commit a684ec2

Browse files
committed
build with windows 2022 and ubuntu 22.04
1 parent 0e525fd commit a684ec2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
mix_test:
1313
name: mix test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -84,7 +84,7 @@ jobs:
8484

8585
mix_test_windows:
8686
name: mix test windows (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})
87-
runs-on: windows-2019
87+
runs-on: windows-2022
8888
strategy:
8989
fail-fast: false
9090
matrix:
@@ -146,7 +146,7 @@ jobs:
146146

147147
static_analysis:
148148
name: static analysis (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})
149-
runs-on: ubuntu-20.04
149+
runs-on: ubuntu-22.04
150150
strategy:
151151
matrix:
152152
include:

.github/workflows/docsite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
name: Build Mkdocs website
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
max-parallel: 1
1414
container:
@@ -27,7 +27,7 @@ jobs:
2727
publish:
2828
needs: build
2929
name: Publish Mkdocs website to GH Pages
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-22.04
3131
strategy:
3232
max-parallel: 1
3333
steps:

.github/workflows/release-asset.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: Create draft release
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
outputs:
1313
upload_url: ${{steps.create_release.outputs.upload_url}}
1414

@@ -26,7 +26,7 @@ jobs:
2626

2727
build:
2828
name: Build and publish release asset
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-22.04
3030
needs: release
3131
steps:
3232
- uses: actions/checkout@v4
@@ -42,8 +42,8 @@ jobs:
4242
- name: Set up BEAM
4343
uses: erlef/setup-beam@v1
4444
with:
45-
elixir-version: 1.15.x
46-
otp-version: 26.x
45+
elixir-version: 1.17.x
46+
otp-version: 27.x
4747

4848
- name: Install dependencies
4949
run: mix deps.get

0 commit comments

Comments
 (0)