Skip to content

Commit 61b0922

Browse files
authored
Merge pull request #1214 from finos/renovate/workflows-major-5-github-actions
chore(deps): update github-actions to v5 - workflows - .github/workflows/unused-dependencies.yml (major)
2 parents 5c6fe5b + 09ad2c6 commit 61b0922

11 files changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
with:
2828
egress-policy: audit
2929

30-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3131
with:
3232
fetch-depth: 0
3333

3434
- name: Use Node.js ${{ matrix.node-version }}
35-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
35+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838

@@ -76,7 +76,7 @@ jobs:
7676
path: build
7777

7878
- name: Download the build folders
79-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
79+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
8080
with:
8181
name: build
8282
path: build

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
egress-policy: audit
5757

5858
- name: Checkout repository
59-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
59+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6060

6161
# Initializes the CodeQL tools for scanning.
6262
- name: Initialize CodeQL

.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1919
- name: Dependency Review
2020
uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4
2121
with:

.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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
31+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3232
with:
3333
fetch-depth: 0
3434

3535
- name: Use Node.js ${{ matrix.node-version }}
36-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
36+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222

2323
# Setup .npmrc file to publish to npm
24-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
24+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222

2323
# Setup .npmrc file to publish to npm
24-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
24+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
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@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
22+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2323
with:
2424
node-version: ${{ env.NODE_VERSION }}
2525

2626
- name: Code Checkout
27-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
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
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
egress-policy: audit
1616

17-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
17+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1818
# Setup .npmrc file to publish to npm
19-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
19+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2020
with:
2121
node-version: '22.x'
2222
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
@@ -17,9 +17,9 @@ jobs:
1717
with:
1818
egress-policy: audit
1919

20-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
20+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2121
# Setup .npmrc file to publish to npm
22-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
22+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2323
with:
2424
node-version: '22.x'
2525
registry-url: 'https://registry.npmjs.org'

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
40+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4141
with:
4242
persist-credentials: false
4343

0 commit comments

Comments
 (0)