Skip to content

Commit c904496

Browse files
committed
Update ubuntu version to latest from 20.04
1 parent 7ed2a38 commit c904496

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/ci.yml

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

1010
jobs:
1111
build-check-demos:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- name: Clone This Repo
1515
uses: actions/checkout@v2
@@ -44,7 +44,7 @@ jobs:
4444
make -C build/ help | grep demo | tr -d '. ' | xargs make -C build/
4545
make -C demos/jobs/jobs_demo_mosquitto
4646
build-check-demos-cpp:
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-latest
4848
steps:
4949
- name: Clone This Repo
5050
uses: actions/checkout@v2
@@ -87,7 +87,7 @@ jobs:
8787
run: |
8888
make -C build/ help | grep demo | tr -d '. ' | xargs make -C build/
8989
build-check-install:
90-
runs-on: ubuntu-20.04
90+
runs-on: ubuntu-latest
9191
steps:
9292
- name: Clone This Repo
9393
uses: actions/checkout@v2
@@ -160,7 +160,7 @@ jobs:
160160
# Each line of install_manifest.txt contains the location of an installed library or header
161161
done <install_manifest.txt
162162
complexity:
163-
runs-on: ubuntu-20.04
163+
runs-on: ubuntu-latest
164164
steps:
165165
- uses: actions/checkout@v2
166166
- name: Setup
@@ -170,7 +170,7 @@ jobs:
170170
find platform/ \( -iname '*.c' ! -wholename '*test*' \) |\
171171
xargs complexity --scores --threshold=0 --horrid-threshold=8
172172
spell-check:
173-
runs-on: ubuntu-20.04
173+
runs-on: ubuntu-latest
174174
steps:
175175
- uses: actions/checkout@v2
176176
- name: Install spell
@@ -189,7 +189,7 @@ jobs:
189189
fi
190190
done
191191
formatting:
192-
runs-on: ubuntu-20.04
192+
runs-on: ubuntu-latest
193193
steps:
194194
- uses: actions/checkout@v2
195195
- name: Check formatting
@@ -226,7 +226,7 @@ jobs:
226226
path: ./doxygen.zip
227227
retention-days: 2
228228
git-secrets:
229-
runs-on: ubuntu-20.04
229+
runs-on: ubuntu-latest
230230
steps:
231231
- uses: actions/checkout@v2
232232
with:
@@ -244,7 +244,7 @@ jobs:
244244
git-secrets --register-aws
245245
git-secrets --scan
246246
link-verifier:
247-
runs-on: ubuntu-20.04
247+
runs-on: ubuntu-latest
248248
steps:
249249
- uses: actions/checkout@v2
250250
with:
@@ -263,7 +263,7 @@ jobs:
263263
include-file-types: .c,.h,.dox
264264
allowlist-file: ./.github/links_allowlist.txt
265265
verify-manifest:
266-
runs-on: ubuntu-20.04
266+
runs-on: ubuntu-latest
267267
steps:
268268
- uses: actions/checkout@v2
269269
with:

.github/workflows/localhost_demo_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-and-run-localhost-demos:
1212
name: Build and Run Localhost Server Demos
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- name: Clone This Repo
1616
uses: actions/checkout@v2

.github/workflows/release-automation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
tag-commit:
1515
name: Tag commit
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
create-zip:
4141
needs: tag-commit
4242
name: Create ZIP and verify package for release asset.
43-
runs-on: ubuntu-20.04
43+
runs-on: ubuntu-latest
4444
steps:
4545
- name: Install ZIP tools
4646
run: sudo apt-get install zip unzip
@@ -132,7 +132,7 @@ jobs:
132132
deploy-docs:
133133
needs: tag-commit
134134
name: Deploy doxygen docs
135-
runs-on: ubuntu-20.04
135+
runs-on: ubuntu-latest
136136
steps:
137137
- name: Deploy doxygen for release tag
138138
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@main
@@ -163,7 +163,7 @@ jobs:
163163
- create-zip
164164
- deploy-docs
165165
name: Create Release and Upload Release Asset
166-
runs-on: ubuntu-20.04
166+
runs-on: ubuntu-latest
167167
steps:
168168
- name: Create Release
169169
id: create_release

0 commit comments

Comments
 (0)