Skip to content

Commit f959996

Browse files
committed
fix: updated ubuntu runner version
1 parent 75eb23b commit f959996

7 files changed

Lines changed: 19 additions & 20 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ env:
4848
jobs:
4949
build:
5050
name: Build
51-
runs-on: ubuntu-20.04
51+
runs-on: ubuntu-24.04
5252
defaults:
5353
run:
5454
shell: bash

.github/workflows/code-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ env:
4848
jobs:
4949
build:
5050
name: Build
51-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
51+
uses: coingaming/.github/.github/workflows/build.yml@main
5252
secrets: inherit
5353
with:
5454
mix-env: ${{ inputs.mix-env }}
@@ -61,15 +61,15 @@ jobs:
6161
code_checks:
6262
name: Run code checks
6363
needs: build
64-
runs-on: ubuntu-20.04
64+
runs-on: ubuntu-24.04
6565
defaults:
6666
run:
6767
shell: bash
6868
working-directory: ${{ inputs.elixir-code-path }}
6969

7070
steps:
7171
- name: Prepare repo and env
72-
uses: coingaming/.github/actions/prepare@v1.4.1
72+
uses: coingaming/.github/actions/prepare@main
7373
with:
7474
mix-env: ${{ inputs.mix-env }}
7575
cache_paths: ${{ inputs.cache_paths }}

.github/workflows/dialyzer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ env:
3636
jobs:
3737
build:
3838
name: Build
39-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
39+
uses: coingaming/.github/.github/workflows/build.yml@main
4040
secrets: inherit
4141
with:
4242
mix-env: ${{ inputs.mix-env }}
@@ -48,7 +48,7 @@ jobs:
4848
dialyzer:
4949
name: Run dialyzer
5050
needs: build
51-
runs-on: ubuntu-20.04
51+
runs-on: ubuntu-24.04
5252
defaults:
5353
run:
5454
shell: bash
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: Prepare repo and env
60-
uses: coingaming/.github/actions/prepare@v1.4.1
60+
uses: coingaming/.github/actions/prepare@main
6161
with:
6262
mix-env: ${{ inputs.mix-env }}
6363
cache_paths: ${{ inputs.cache_paths }}

.github/workflows/release-flask.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ env:
6363
jobs:
6464
build:
6565
name: Build
66-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
66+
uses: coingaming/.github/.github/workflows/build.yml@main
6767
secrets: inherit
6868
with:
6969
mix-env: ${{ inputs.mix-env }}
@@ -75,7 +75,7 @@ jobs:
7575
release:
7676
name: Release
7777
needs: build
78-
runs-on: ubuntu-20.04
78+
runs-on: ubuntu-24.04
7979
defaults:
8080
run:
8181
shell: bash
@@ -89,7 +89,7 @@ jobs:
8989

9090
steps:
9191
- name: Prepare repo and env
92-
uses: coingaming/.github/actions/prepare@v1.4.1
92+
uses: coingaming/.github/actions/prepare@main
9393
with:
9494
mix-env: ${{ inputs.mix-env }}
9595
cache_paths: ${{ inputs.cache_paths }}

.github/workflows/release-hex-manual.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ env:
3939
jobs:
4040
build:
4141
name: Build
42-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
42+
uses: coingaming/.github/.github/workflows/build.yml@main
4343
secrets: inherit
4444
with:
4545
ref: ${{ inputs.version }}
@@ -52,15 +52,15 @@ jobs:
5252
release:
5353
name: Release
5454
needs: build
55-
runs-on: ubuntu-20.04
55+
runs-on: ubuntu-24.04
5656
env:
5757
MIX_ENV: ${{ inputs.mix-env }}
5858
HEX_API_KEY: ${{ secrets.HEX_ORGANIZATION_COINGAMING_KEY }}
5959
VSN: ${{ inputs.version }}
6060

6161
steps:
6262
- name: Prepare repo and env
63-
uses: coingaming/.github/actions/prepare@v1.4.1
63+
uses: coingaming/.github/actions/prepare@main
6464
with:
6565
ref: ${{ inputs.version }}
6666
mix-env: ${{ inputs.mix-env }}

.github/workflows/release-hex.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,14 @@ on:
2929
defaults:
3030
run:
3131
shell: bash
32-
working-directory: ${{ inputs.elixir-code-path }}
3332

3433
env:
3534
MIX_ENV: ${{ inputs.mix-env }}
3635

3736
jobs:
3837
build:
3938
name: Build
40-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
39+
uses: coingaming/.github/.github/workflows/build.yml@main
4140
secrets: inherit
4241
with:
4342
mix-env: ${{ inputs.mix-env }}
@@ -49,7 +48,7 @@ jobs:
4948
release:
5049
name: Release
5150
needs: build
52-
runs-on: ubuntu-20.04
51+
runs-on: ubuntu-24.04
5352
defaults:
5453
run:
5554
shell: bash
@@ -61,7 +60,7 @@ jobs:
6160

6261
steps:
6362
- name: Prepare repo and env
64-
uses: coingaming/.github/actions/prepare@v1.4.1
63+
uses: coingaming/.github/actions/prepare@main
6564
with:
6665
mix-env: ${{ inputs.mix-env }}
6766
cache_paths: ${{ inputs.cache_paths }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ env:
3636
jobs:
3737
build:
3838
name: Build
39-
uses: coingaming/.github/.github/workflows/build.yml@v1.4.1
39+
uses: coingaming/.github/.github/workflows/build.yml@main
4040
secrets: inherit
4141
with:
4242
mix-env: ${{ inputs.mix-env }}
@@ -48,7 +48,7 @@ jobs:
4848
tests:
4949
name: Run tests
5050
needs: build
51-
runs-on: ubuntu-20.04
51+
runs-on: ubuntu-24.04
5252

5353
services:
5454
postgres:
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Prepare repo and env
71-
uses: coingaming/.github/actions/prepare@v1.4.1
71+
uses: coingaming/.github/actions/prepare@main
7272
with:
7373
mix-env: ${{ inputs.mix-env }}
7474
cache_paths: ${{ inputs.cache_paths }}

0 commit comments

Comments
 (0)