Skip to content

Commit 4bf456f

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] Now use fixed version of Github Actions images.
1 parent 291b960 commit 4bf456f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/c.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
strategy:
1717
matrix:
18-
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
18+
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
1919

2020
steps:
2121
- 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)