Skip to content

Commit 90b541e

Browse files
authored
Merge pull request #3660 from tarlepp/Chore(ci)---GitHub-actions-update
Chore(ci): Updated GitHub workflow actions images
2 parents 221885b + 95c239e commit 90b541e

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4.2.2
16+
uses: actions/checkout@v6.0.0
1717
with:
1818
# We must fetch at least the immediate parents so that if this is
1919
# a pull request then we can checkout the head.
@@ -26,15 +26,15 @@ jobs:
2626

2727
# Initializes the CodeQL tools for scanning.
2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
29+
uses: github/codeql-action/init@v4
3030
# Override language selection by uncommenting this and choosing your languages
3131
# with:
3232
# languages: go, javascript, csharp, python, cpp, java
3333

3434
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3535
# If this step fails, then you should remove it and run the build manually (see below)
3636
- name: Autobuild
37-
uses: github/codeql-action/autobuild@v3
37+
uses: github/codeql-action/autobuild@v4
3838

3939
# ℹ️ Command-line programs to run using the OS shell.
4040
# 📚 https://git.io/JvXDl
@@ -48,4 +48,4 @@ jobs:
4848
# make release
4949

5050
- name: Perform CodeQL Analysis
51-
uses: github/codeql-action/analyze@v3
51+
uses: github/codeql-action/analyze@v4

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424

2525
steps:
2626
- name: Make checkout
27-
uses: actions/checkout@v4.2.2
27+
uses: actions/checkout@v6.0.0
2828

2929
- name: Use Node.js 24.9.0
30-
uses: actions/setup-node@v4.1.0
30+
uses: actions/setup-node@v6.0.0
3131
with:
3232
node-version: 24.9.0
3333

@@ -43,10 +43,10 @@ jobs:
4343

4444
steps:
4545
- name: Make checkout
46-
uses: actions/checkout@v4.2.2
46+
uses: actions/checkout@v6.0.0
4747

4848
- name: Use Node.js 24.9.0
49-
uses: actions/setup-node@v4.1.0
49+
uses: actions/setup-node@v6.0.0
5050
with:
5151
node-version: 24.9.0
5252

@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: Make checkout
65-
uses: actions/checkout@v4.2.2
65+
uses: actions/checkout@v6.0.0
6666

6767
- name: Lint `./README.md`
6868
uses: avto-dev/[email protected]
@@ -82,10 +82,10 @@ jobs:
8282

8383
steps:
8484
- name: Make checkout
85-
uses: actions/checkout@v4.2.2
85+
uses: actions/checkout@v6.0.0
8686

8787
- name: Use Node.js 24.9.0
88-
uses: actions/setup-node@v4.1.0
88+
uses: actions/setup-node@v6.0.0
8989
with:
9090
node-version: 24.9.0
9191

@@ -101,10 +101,10 @@ jobs:
101101

102102
steps:
103103
- name: Make checkout
104-
uses: actions/checkout@v4.2.2
104+
uses: actions/checkout@v6.0.0
105105

106106
- name: Use Node.js 24.9.0
107-
uses: actions/setup-node@v4.1.0
107+
uses: actions/setup-node@v6.0.0
108108
with:
109109
node-version: 24.9.0
110110

@@ -126,7 +126,7 @@ jobs:
126126

127127
steps:
128128
- name: Make checkout
129-
uses: actions/checkout@v4.2.2
129+
uses: actions/checkout@v6.0.0
130130

131131
- name: Set tag var
132132
id: vars

.github/workflows/scorecard.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@v4.2.2
37+
uses: actions/checkout@v6.0.0
3838
with:
3939
persist-credentials: false
4040

4141
- name: "Run analysis"
42-
uses: ossf/[email protected].1
42+
uses: ossf/[email protected].3
4343
with:
4444
results_file: results.sarif
4545
results_format: sarif
@@ -61,14 +61,14 @@ jobs:
6161
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6262
# format to the repository Actions tab.
6363
- name: "Upload artifact"
64-
uses: actions/upload-artifact@v4.4.3
64+
uses: actions/upload-artifact@v5.0.0
6565
with:
6666
name: SARIF file
6767
path: results.sarif
6868
retention-days: 5
6969

7070
# Upload the results to GitHub's code scanning dashboard.
7171
- name: "Upload to code-scanning"
72-
uses: github/codeql-action/upload-sarif@v3
72+
uses: github/codeql-action/upload-sarif@v4
7373
with:
7474
sarif_file: results.sarif

.github/workflows/vulnerability-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4.2.2
16+
- uses: actions/checkout@v6.0.0
1717

1818
- name: Build the Docker image
1919
run: docker build . --file Dockerfile --tag angular-ngrx-frontend:master
2020

2121
- name: Scan image with trivy
22-
uses: aquasecurity/trivy-action@0.28.0
22+
uses: aquasecurity/trivy-action@0.33.1
2323
with:
2424
image-ref: angular-ngrx-frontend:master
2525
ignore-unfixed: 'true'

0 commit comments

Comments
 (0)