Skip to content

Commit 1dc6d41

Browse files
authored
chore(ci): bump the ubuntu GH runners (#818)
1 parent 20df521 commit 1dc6d41

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [ pull_request ]
55
jobs:
66

77
validate-go-mod:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Setup Go
@@ -22,7 +22,7 @@ jobs:
2222
- run: go mod tidy
2323

2424
test-tgapi:
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-latest
2626
needs: validate-go-mod
2727
steps:
2828
- uses: actions/checkout@v4
@@ -39,7 +39,7 @@ jobs:
3939
- run: make -C tgapi test
4040

4141
test-tgrun:
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-latest
4343
needs: validate-go-mod
4444
steps:
4545
- uses: actions/checkout@v4
@@ -56,7 +56,7 @@ jobs:
5656
- run: make -C tgrun test
5757

5858
build-web:
59-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-latest
6060
needs: validate-go-mod
6161
steps:
6262
- uses: actions/setup-node@v4
@@ -68,7 +68,7 @@ jobs:
6868
- run: make -C web deps build-staging
6969

7070
docker-image-tgapi:
71-
runs-on: ubuntu-20.04
71+
runs-on: ubuntu-latest
7272
steps:
7373
- uses: actions/checkout@v4
7474
- name: tgapi-build
@@ -80,7 +80,7 @@ jobs:
8080
.
8181
8282
docker-image-tgrun:
83-
runs-on: ubuntu-20.04
83+
runs-on: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@v4
8686
- name: tgrun-build

.github/workflows/deploy.yaml

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

88
jobs:
99
staging-docker-image-tgapi:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
1313

@@ -27,7 +27,7 @@ jobs:
2727
- run: docker push 923411875752.dkr.ecr.us-east-1.amazonaws.com/tgapi:${GITHUB_SHA:0:7}
2828

2929
deploy-staging-eks-tgapi:
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-latest
3131
needs: staging-docker-image-tgapi
3232
steps:
3333
- uses: actions/checkout@v4
@@ -69,7 +69,7 @@ jobs:
6969
git push origin main
7070
7171
production-docker-image-tgapi:
72-
runs-on: ubuntu-20.04
72+
runs-on: ubuntu-latest
7373
steps:
7474
- uses: actions/checkout@v4
7575

@@ -89,7 +89,7 @@ jobs:
8989
- run: docker push 799720048698.dkr.ecr.us-east-1.amazonaws.com/tgapi:${GITHUB_SHA:0:7}
9090

9191
docker-image-tgrun:
92-
runs-on: ubuntu-20.04
92+
runs-on: ubuntu-latest
9393
steps:
9494
- uses: actions/checkout@v4
9595
- name: tgrun-build
@@ -111,7 +111,7 @@ jobs:
111111
docker push replicated/tgrun:${GITHUB_SHA:0:7}
112112
113113
deploy-production-eks-tgapi:
114-
runs-on: ubuntu-20.04
114+
runs-on: ubuntu-latest
115115
needs: production-docker-image-tgapi
116116
steps:
117117
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)