Skip to content

Commit ea2b755

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] Now use fixed version of Github Actions images.
1 parent 1a2391a commit ea2b755

File tree

9 files changed

+14
-18
lines changed

9 files changed

+14
-18
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
analyze:
3737
name: Analyze
3838
runs-on:
39-
${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
39+
${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
4040
permissions:
4141
actions: read
4242
contents: read

.github/workflows/docker-image.yml

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

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

@@ -72,7 +72,7 @@ jobs:
7272

7373
lint:
7474
name: "Run in docker: LINT"
75-
runs-on: ubuntu-latest
75+
runs-on: ubuntu-24.04
7676
needs: build
7777
steps:
7878
- name: Download artifact
@@ -92,7 +92,7 @@ jobs:
9292
9393
test:
9494
name: "Run in docker: TEST"
95-
runs-on: ubuntu-latest
95+
runs-on: ubuntu-24.04
9696
needs: build
9797
steps:
9898
- name: Download artifact
@@ -112,7 +112,7 @@ jobs:
112112
113113
security:
114114
name: "Snyk Container"
115-
runs-on: ubuntu-latest
115+
runs-on: ubuntu-24.04
116116
needs: build
117117
steps:
118118
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -155,7 +155,7 @@ jobs:
155155
sarif_file: 'snyk.sarif'
156156
scan:
157157
name: "Trivy"
158-
runs-on: ubuntu-latest
158+
runs-on: ubuntu-24.04
159159
needs: build
160160
steps:
161161
- name: Download artifact

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ on: # yamllint disable-line rule:truthy
3434
jobs:
3535
eslint:
3636
name: Run eslint scanning
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-24.04
3838
permissions:
3939
contents: read
4040
security-events: write

.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/node-coverage.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- name: Checkout repository

.github/workflows/node.js.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,10 @@ on: # yamllint disable-line rule:truthy
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
strategy:
1717
matrix:
18-
os: [
19-
"windows-latest",
20-
"ubuntu-latest",
21-
"macOS-latest"
22-
]
18+
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
2319
node-version: [18.x, 20.x, 22.x]
2420
# See supported Node.js release schedule
2521
# at https://nodejs.org/en/about/releases/

.github/workflows/snyk-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on: # yamllint disable-line rule:truthy
1717

1818
jobs:
1919
security:
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- uses: actions/checkout@master
2323
- name: Run Snyk to check for vulnerabilities

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111

1212
jobs:
1313
lint:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

0 commit comments

Comments
 (0)