Skip to content

Commit c0a9ff8

Browse files
authored
ci: Fix outdated ubuntu version (parse-community#8540)
1 parent ac90cb8 commit c0a9ff8

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
check-ci:
3333
name: Node Engine Check
3434
timeout-minutes: 15
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v2
3838
- name: Use Node.js ${{ matrix.NODE_VERSION }}
@@ -53,7 +53,7 @@ jobs:
5353
check-lint:
5454
name: Lint
5555
timeout-minutes: 15
56-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v2
5959
- name: Use Node.js ${{ matrix.NODE_VERSION }}
@@ -73,7 +73,7 @@ jobs:
7373
check-circular:
7474
name: Circular Dependencies
7575
timeout-minutes: 5
76-
runs-on: ubuntu-20.04
76+
runs-on: ubuntu-latest
7777
steps:
7878
- uses: actions/checkout@v2
7979
- name: Use Node.js ${{ matrix.NODE_VERSION }}
@@ -93,7 +93,7 @@ jobs:
9393
check-docker:
9494
name: Docker Build
9595
timeout-minutes: 15
96-
runs-on: ubuntu-20.04
96+
runs-on: ubuntu-latest
9797
steps:
9898
- name: Checkout repository
9999
uses: actions/checkout@v2
@@ -110,7 +110,7 @@ jobs:
110110
check-lock-file-version:
111111
name: NPM Lock File Version
112112
timeout-minutes: 5
113-
runs-on: ubuntu-20.04
113+
runs-on: ubuntu-latest
114114
steps:
115115
- uses: actions/checkout@v2
116116
- name: Check NPM lock file version
@@ -180,7 +180,7 @@ jobs:
180180
fail-fast: false
181181
name: ${{ matrix.name }}
182182
timeout-minutes: 15
183-
runs-on: ubuntu-20.04
183+
runs-on: ubuntu-latest
184184
services:
185185
redis:
186186
image: redis
@@ -245,7 +245,7 @@ jobs:
245245
fail-fast: false
246246
name: ${{ matrix.name }}
247247
timeout-minutes: 15
248-
runs-on: ubuntu-20.04
248+
runs-on: ubuntu-latest
249249
services:
250250
redis:
251251
image: redis

.github/workflows/release-automated.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
env:
4343
REGISTRY: docker.io
4444
IMAGE_NAME: parseplatform/parse-server
45-
runs-on: ubuntu-18.04
45+
runs-on: ubuntu-latest
4646
permissions:
4747
contents: read
4848
packages: write
@@ -86,7 +86,7 @@ jobs:
8686
docs:
8787
needs: release
8888
if: needs.release.outputs.current_tag != '' && github.ref == 'refs/heads/release'
89-
runs-on: ubuntu-18.04
89+
runs-on: ubuntu-latest
9090
timeout-minutes: 15
9191
steps:
9292
- uses: actions/checkout@v2

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
IMAGE_NAME: parseplatform/parse-server
1515
jobs:
1616
build:
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-latest
1818
permissions:
1919
contents: read
2020
packages: write

0 commit comments

Comments
 (0)