Skip to content

Commit fe5a996

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

File tree

9 files changed

+14
-18
lines changed

9 files changed

+14
-18
lines changed

.github/workflows/codeql.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
@@ -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
- name: Download artifact
@@ -93,7 +93,7 @@ jobs:
9393
9494
test:
9595
name: "Run in docker: TEST"
96-
runs-on: ubuntu-latest
96+
runs-on: ubuntu-24.04
9797
needs: build
9898
steps:
9999
- name: Download artifact
@@ -113,7 +113,7 @@ jobs:
113113
114114
security:
115115
name: "Snyk Container"
116-
runs-on: ubuntu-latest
116+
runs-on: ubuntu-24.04
117117
needs: build
118118
permissions:
119119
actions: read
@@ -160,7 +160,7 @@ jobs:
160160
sarif_file: 'snyk.sarif'
161161
scan:
162162
name: "Trivy"
163-
runs-on: ubuntu-latest
163+
runs-on: ubuntu-24.04
164164
needs: build
165165
permissions:
166166
actions: read

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on: # yamllint disable-line rule:truthy
3232
jobs:
3333
eslint:
3434
name: Run eslint scanning
35-
runs-on: ubuntu-latest
35+
runs-on: ubuntu-24.04
3636
permissions:
3737
contents: read
3838
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
@@ -12,7 +12,7 @@ on: # yamllint disable-line rule:truthy
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

.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
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
security:
1515
name: Snyk Open Source (Node.js)
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
actions: read
1919
contents: read

.github/workflows/yamllint.yml

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

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

0 commit comments

Comments
 (0)