Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 657c4b7

Browse files
Update GitHub Actions runner to ubuntu-22.04 (#8)
1 parent 0d70efc commit 657c4b7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/gen_pack.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
workflow_dispatch:
55
pull_request:
66
push:
7+
branches:
8+
- main
79
release:
810
types: [published]
911

@@ -14,9 +16,9 @@ concurrency:
1416
jobs:
1517
pack:
1618
name: Generate pack
17-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-22.04
1820
steps:
19-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2022
with:
2123
fetch-depth: 0
2224

gen_pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o pipefail
99
# Set version of gen pack library
1010
# For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
1111
# Use the tag name without the prefix "v", e.g., 0.7.0
12-
REQUIRED_GEN_PACK_LIB="0.9.1"
12+
REQUIRED_GEN_PACK_LIB="0.11.1"
1313

1414
# Set default command line arguments
1515
DEFAULT_ARGS=()

0 commit comments

Comments
 (0)