Skip to content

Commit f7eebff

Browse files
Update GitHub Actions runner to ubuntu-22.04 (#18)
This PR updates the GitHub Actions runner from ubuntu-20.04 to ubuntu-22.04.
1 parent 9fff162 commit f7eebff

4 files changed

Lines changed: 23 additions & 9 deletions

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: ".github/workflows"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 10
8+
labels:
9+
- "dependencies"
10+
- "github-actions"
11+
commit-message:
12+
prefix: "chore"
13+
include: "scope"
14+

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ on:
1010
jobs:
1111
pack:
1212
name: Generate pack
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

@@ -23,7 +23,7 @@ jobs:
2323
2424
- uses: Open-CMSIS-Pack/gen-pack-action@main
2525
with:
26-
doxygen-version: 1.9.2 # default
26+
doxygen-version: 1.9.6 # default
2727
packchk-version: 1.3.95 # default
2828
gen-doc-script: ./DoxyGen/gen_doc.sh # skipped by default
2929
check-links-script: ./DoxyGen/check_links.sh # skipped by default

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Setup Pages
36-
uses: actions/configure-pages@v3
36+
uses: actions/configure-pages@v5
3737

3838
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v1
39+
uses: actions/upload-pages-artifact@v3
4040
with:
4141
# Upload entire repository
4242
path: '.'
4343

4444
- name: Deploy to GitHub Pages
4545
id: deployment
46-
uses: actions/deploy-pages@v1
46+
uses: actions/deploy-pages@v4

DoxyGen/gen_doc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
#
66
# Pre-requisites:
77
# - bash shell (for Windows: install git for Windows)
8-
# - doxygen 1.9.2
8+
# - doxygen 1.9.6
99
# - git
1010

1111
set -o pipefail
1212

1313
DIRNAME=$(dirname $(realpath $0))
1414
DOXYGEN=$(which doxygen)
15-
REQ_DXY_VERSION="1.9.2"
15+
REQ_DXY_VERSION="1.9.6"
1616
REQUIRED_GEN_PACK_LIB="0.6.1"
1717

1818
############ gen-pack library ###########

0 commit comments

Comments
 (0)