Skip to content

Commit 53c9353

Browse files
authored
Merge pull request finos#1438 from finos/renovate/workflows-major-6-github-actions
chore(deps): update github-actions to v6 - workflows - .github/workflows/unused-dependencies.yml (major)
2 parents 0448190 + 28b337c commit 53c9353

11 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: npm run build-ui
7878

7979
- name: Save build folder
80-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
80+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
8181
with:
8282
name: build-ubuntu-node-${{ matrix.node-version }}-mongo-${{ matrix.mongodb-version }}
8383
if-no-files-found: error

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
egress-policy: audit
1616

1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1919
- name: Dependency Review
2020
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4
2121
with:

.github/workflows/e2e.yml

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

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2121

2222
- name: Set up Docker Buildx
2323
uses: docker/setup-buildx-action@7c525be6cc8a882d5163ce04293cac18617c709f
@@ -26,7 +26,7 @@ jobs:
2626
uses: docker/setup-compose-action@112d3e30db3bf437d207fea57f22510569d1ab97
2727

2828
- name: Set up Node.js
29-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
29+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
3030
with:
3131
node-version: '20'
3232
cache: 'npm'

.github/workflows/experimental-inventory-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
with:
2929
egress-policy: audit
3030

31-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3232
with:
3333
fetch-depth: 0
3434

3535
- name: Use Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
36+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939

.github/workflows/experimental-inventory-cli-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
egress-policy: audit
2020

21-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222

2323
# Setup .npmrc file to publish to npm
24-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
24+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2525
with:
2626
node-version: '22.x'
2727
registry-url: 'https://registry.npmjs.org'

.github/workflows/experimental-inventory-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
egress-policy: audit
2020

21-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222

2323
# Setup .npmrc file to publish to npm
24-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
24+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2525
with:
2626
node-version: '22.x'
2727
registry-url: 'https://registry.npmjs.org'

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
egress-policy: audit
2020

2121
- name: Install NodeJS
22-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
22+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2323
with:
2424
node-version: ${{ env.NODE_VERSION }}
2525

2626
- name: Code Checkout
27-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2828
with:
2929
fetch-depth: 0
3030

.github/workflows/npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
with:
1616
egress-policy: audit
1717

18-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1919
# Setup .npmrc file to publish to npm
20-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
20+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2121
with:
2222
node-version: '24'
2323
registry-url: 'https://registry.npmjs.org'

.github/workflows/sample-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
1717
with:
1818
egress-policy: audit
19-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
# Setup .npmrc file to publish to npm
21-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
21+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2222
with:
2323
node-version: '22.x'
2424
registry-url: 'https://registry.npmjs.org'

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
egress-policy: audit
3838

3939
- name: 'Checkout code'
40-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
40+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4141
with:
4242
persist-credentials: false
4343

@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: 'Upload artifact'
67-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
67+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6868
with:
6969
name: SARIF file
7070
path: results.sarif

0 commit comments

Comments
 (0)