Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 691c71f

Browse files
ci: update ubuntu runner to 22.04 as 18.4 is deprecated in GitHub Actions (#3553)
Signed-off-by: Rolson Quadras <[email protected]>
1 parent 901fc91 commit 691c71f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/bbs-interop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
jobs:
3131
bbsInteropTest:
3232
name: BBS+ interop test
33-
runs-on: ubuntu-18.04
33+
runs-on: ubuntu-22.04
3434
timeout-minutes: 10
3535
steps:
3636

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 15
1717
strategy:
1818
matrix:
19-
os: [ubuntu-18.04, macOS-10.15]
19+
os: [ubuntu-22.04, macOS-10.15]
2020
steps:
2121

2222
- name: Setup Go 1.19
@@ -37,14 +37,14 @@ jobs:
3737

3838
- name: Upload coverage to Codecov
3939
timeout-minutes: 10
40-
if: matrix.os == 'ubuntu-18.04' && github.repository == 'hyperledger/aries-framework-go'
40+
if: matrix.os == 'ubuntu-22.04' && github.repository == 'hyperledger/aries-framework-go'
4141
uses: codecov/[email protected]
4242
with:
4343
file: ./coverage.out
4444

4545
unitTestUrsa:
4646
name: Unit test (Ursa/CL)
47-
runs-on: ubuntu-18.04
47+
runs-on: ubuntu-22.04
4848
container:
4949
image: ghcr.io/hyperledger/ursa-wrapper-go/uwg-build # a container with libursa installed
5050
timeout-minutes: 15
@@ -63,7 +63,7 @@ jobs:
6363

6464
unitTestMobile:
6565
name: Unit test (mobile)
66-
runs-on: ubuntu-18.04
66+
runs-on: ubuntu-22.04
6767
timeout-minutes: 15
6868
steps:
6969

@@ -81,7 +81,7 @@ jobs:
8181

8282
unitTestWasm:
8383
name: Unit test wasm
84-
runs-on: ubuntu-18.04
84+
runs-on: ubuntu-22.04
8585
timeout-minutes: 10
8686
steps:
8787

@@ -99,7 +99,7 @@ jobs:
9999

100100
bddTest:
101101
name: BDD test
102-
runs-on: ubuntu-18.04
102+
runs-on: ubuntu-22.04
103103
timeout-minutes: 45
104104
steps:
105105

@@ -129,7 +129,7 @@ jobs:
129129

130130
repoLint:
131131
name: repolint
132-
runs-on: ubuntu-18.04
132+
runs-on: ubuntu-22.04
133133
steps:
134134
- uses: actions/checkout@v3
135135
- name: repolinter
@@ -140,7 +140,7 @@ jobs:
140140
checks:
141141
name: Checks
142142
timeout-minutes: 10
143-
runs-on: ubuntu-18.04
143+
runs-on: ubuntu-22.04
144144
steps:
145145
- name: Setup Go 1.19
146146
uses: actions/setup-go@v2
@@ -157,7 +157,7 @@ jobs:
157157
name: Publish images and npm packages
158158
if: github.event_name == 'push' && ((github.repository == 'hyperledger/aries-framework-go' && github.ref == 'refs/heads/main') || (github.repository != 'hyperledger/aries-framework-go' && github.ref == 'refs/heads/afg-publish'))
159159
needs: [repoLint, checks, unitTest, unitTestWasm, bddTest]
160-
runs-on: ubuntu-18.04
160+
runs-on: ubuntu-22.04
161161
timeout-minutes: 10
162162
steps:
163163
- name: Setup Go 1.19

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
vcTestSuite:
2424
name: VC test suite
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-22.04
2626
timeout-minutes: 10
2727
steps:
2828

0 commit comments

Comments
 (0)