Skip to content

Commit 8595b53

Browse files
authored
bump actions (#5315)
Signed-off-by: Fedor Partanskiy <[email protected]>
1 parent 4755daf commit 8595b53

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/broken-link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
2424
steps:
2525
- name: Checkout Fabric Code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- name: Check Broken Links with Muffet
2828
# Exclude any links that direct to the documentation or release notes of the non-latest version to limit the scanning to target to that of the latest version.
2929
run: |

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
runs-on: ubuntu-24.04
4343
steps:
4444
- name: Checkout Fabric Code
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
- name: Install Go
47-
uses: actions/setup-go@v5
47+
uses: actions/setup-go@v6
4848
with:
4949
go-version-file: go.mod
5050
- name: Compile Binary and Create Tarball
@@ -93,7 +93,7 @@ jobs:
9393

9494
steps:
9595
- name: Checkout
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797

9898
- name: Set GO_VER environment variable from go.mod
9999
run: |
@@ -174,7 +174,7 @@ jobs:
174174

175175
steps:
176176
- name: Download digests
177-
uses: actions/download-artifact@v4
177+
uses: actions/download-artifact@v5
178178
with:
179179
path: ${{ runner.temp }}/digests/${{ matrix.registry }}/${{ matrix.component.name }}
180180
pattern: digests-${{ matrix.registry }}-${{ matrix.component.name }}-*
@@ -220,11 +220,11 @@ jobs:
220220
contents: write
221221
steps:
222222
- name: Checkout Fabric Code
223-
uses: actions/checkout@v4
223+
uses: actions/checkout@v5
224224

225225
- name: Download Artifacts
226226
id: download
227-
uses: actions/download-artifact@v4
227+
uses: actions/download-artifact@v5
228228
with:
229229
pattern: "release-*"
230230

.github/workflows/scorecard.yml

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

3838
steps:
3939
- name: "Checkout code"
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
with:
4242
persist-credentials: false
4343

@@ -73,6 +73,6 @@ jobs:
7373
# Upload the results to GitHub's code scanning dashboard (optional).
7474
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7575
- name: "Upload to code-scanning"
76-
uses: github/codeql-action/upload-sarif@v3
76+
uses: github/codeql-action/upload-sarif@v4
7777
with:
7878
sarif_file: results.sarif

.github/workflows/verify-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
name: Basic Checks
2323
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-24.04' || 'ubuntu-24.04' }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
name: Checkout Fabric Code
2727
with:
2828
fetch-depth: 0
29-
- uses: actions/setup-go@v5
29+
- uses: actions/setup-go@v6
3030
name: Install Go
3131
with:
3232
go-version-file: go.mod
@@ -48,11 +48,11 @@ jobs:
4848
needs: basic-checks
4949
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-24.04' || 'ubuntu-24.04' }}
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454
name: Checkout Fabric Code
55-
- uses: actions/setup-go@v5
55+
- uses: actions/setup-go@v6
5656
name: Install Go
5757
with:
5858
go-version-file: go.mod
@@ -78,9 +78,9 @@ jobs:
7878
- sbe nwo msp
7979
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-24.04' || 'ubuntu-24.04' }}
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
8282
name: Checkout Fabric Code
83-
- uses: actions/setup-go@v5
83+
- uses: actions/setup-go@v6
8484
name: Install Go
8585
with:
8686
go-version-file: go.mod

.github/workflows/vulnerability-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
output_release-25: ${{ steps.latest_release.outputs.tag_release_25 }}
5353
steps:
5454
- name: Checkout ${{ matrix.ref.branch }} branch
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
ref: ${{ matrix.ref.branch }}
5858
fetch-depth: 0

0 commit comments

Comments
 (0)