Skip to content

Commit 43e8724

Browse files
authored
Merge pull request #68 from sir-gon/develop
Develop
2 parents b9feb54 + 8c5d466 commit 43e8724

File tree

8 files changed

+464
-95
lines changed

8 files changed

+464
-95
lines changed

.github/workflows/cpp-coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121

2222
- name: Install Tools
2323
run: |
24+
sudo apt update
2425
sudo apt-get install lcov
2526
2627
- name: Check Tools

.github/workflows/cpp.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

3-
name: C++ CI Tests
3+
name: C/C++ CMake CI Test
44

55
on: # yamllint disable-line rule:truthy
66
push:
@@ -12,15 +12,11 @@ on: # yamllint disable-line rule:truthy
1212

1313
jobs:
1414
build:
15-
name: C++ CMake CI Test
15+
name: C/C++ CMake CI Test
1616
runs-on: ubuntu-24.04
1717
strategy:
1818
matrix:
19-
os: [
20-
"windows-latest",
21-
"ubuntu-latest",
22-
"macOS-latest"
23-
]
19+
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
2420

2521
steps:
2622
- name: Checkout repository

.github/workflows/docker-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
build:
2020
name: "Build Docker images"
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04
2222
steps:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2424

@@ -73,7 +73,7 @@ jobs:
7373

7474
lint:
7575
name: "Run in docker: LINT"
76-
runs-on: ubuntu-latest
76+
runs-on: ubuntu-24.04
7777
needs: build
7878
steps:
7979
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -98,7 +98,7 @@ jobs:
9898
9999
test:
100100
name: "Run in docker: TEST"
101-
runs-on: ubuntu-latest
101+
runs-on: ubuntu-24.04
102102
needs: build
103103
steps:
104104
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -123,7 +123,7 @@ jobs:
123123
124124
security:
125125
name: "Snyk Container"
126-
runs-on: ubuntu-latest
126+
runs-on: ubuntu-24.04
127127
needs: build
128128
permissions:
129129
actions: read
@@ -170,7 +170,7 @@ jobs:
170170
sarif_file: 'snyk.sarif'
171171
scan:
172172
name: "Trivy"
173-
runs-on: ubuntu-latest
173+
runs-on: ubuntu-24.04
174174
needs: build
175175
permissions:
176176
actions: read

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on: # yamllint disable-line rule:truthy
2020
jobs:
2121
scan:
2222
name: gitleaks
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
lint:
1515
name: Markdown Lint
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717

1818
steps:
1919
- name: Checkout repository

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
lint:
1515
name: YAML lint
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

0 commit comments

Comments
 (0)