Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout Fabric Code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Compile Binary and Create Tarball
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set GO_VER environment variable from go.mod
run: |
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:

steps:
- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
path: ${{ runner.temp }}/digests/${{ matrix.registry }}/${{ matrix.component.name }}
pattern: digests-${{ matrix.registry }}-${{ matrix.component.name }}-*
Expand Down Expand Up @@ -221,11 +221,11 @@ jobs:
contents: write
steps:
- name: Checkout Fabric Code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download Artifacts
id: download
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: "release-*"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
name: Basic Checks
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: Checkout Fabric Code
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
name: Install Go
with:
go-version-file: go.mod
Expand All @@ -35,9 +35,9 @@ jobs:
needs: basic-checks
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: Checkout Fabric Code
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
name: Install Go
with:
go-version-file: go.mod
Expand All @@ -63,9 +63,9 @@ jobs:
- sbe nwo msp
runs-on: ${{ github.repository == 'hyperledger/fabric' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: Checkout Fabric Code
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
name: Install Go
with:
go-version-file: go.mod
Expand Down