Skip to content

Commit 8e26b62

Browse files
committed
Merge branch 'develop'
2 parents dc390de + f550b0a commit 8e26b62

249 files changed

Lines changed: 88611 additions & 2278 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Skip build/test folders
55
installer/**
66
networks/**
7-
tests/**
87

98
# Skip Git-related folders
109
.github/**

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121

2222
- uses: actions/setup-go@v6
2323
with:
@@ -32,7 +32,7 @@ jobs:
3232
args: build --clean --snapshot --single-target
3333

3434
- name: Store artifact
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: cheqd-noded
3838
path: dist/linux-amd64_linux_amd64_v1/cheqd-noded
@@ -45,7 +45,7 @@ jobs:
4545
IMAGE_NAME: ${{ github.repository }}
4646

4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949

5050
- name: Setup Docker Buildx
5151
uses: docker/setup-buildx-action@v3
@@ -79,7 +79,7 @@ jobs:
7979
cache-to: type=gha,mode=min
8080

8181
- name: Upload Docker build image
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v6
8383
with:
8484
name: cheqd-node-build.tar
8585
path: /tmp/cheqd-node-build.tar

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
go-version: 1.23
3535

36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0 # Required to fetch version
3939

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: "Shell pipefail check"
1313
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Run 'set -euox pipefail' check
1818
run: bash ./.github/scripts/ensure_set_euox_pipefail.sh
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Run Markdown link check
2828
uses: gaurav-nelson/github-action-markdown-link-check@v1
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-24.04
3838

3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141

4242
- uses: actions/setup-go@v6
4343
with:
@@ -54,7 +54,7 @@ jobs:
5454
name: "Protobuf"
5555
runs-on: ubuntu-24.04
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858

5959
# Install the `buf` CLI
6060
- uses: bufbuild/buf-setup-action@v1.50.0
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-24.04
7979

8080
steps:
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
with:
8383
fetch-depth: 0 # Required to fetch version
8484

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- uses: amannn/action-semantic-pull-request@v5.5.3
2828
env:

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0 # Required to fetch version
2121

@@ -50,7 +50,7 @@ jobs:
5050
EXECUTE_RELEASE: ${{ steps.execute-release.outputs.EXECUTE_RELEASE }}
5151

5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
with:
5555
fetch-depth: 0 # Required to fetch version
5656
persist-credentials: false
@@ -105,7 +105,7 @@ jobs:
105105
if: needs.release-guard.outputs.EXECUTE_RELEASE == 'true'
106106

107107
steps:
108-
- uses: actions/checkout@v5
108+
- uses: actions/checkout@v6
109109
with:
110110
fetch-depth: 0 # Required to fetch version
111111
persist-credentials: false
@@ -155,7 +155,7 @@ jobs:
155155
runs-on: ubuntu-24.04-arm
156156

157157
steps:
158-
- uses: actions/checkout@v5
158+
- uses: actions/checkout@v6
159159
with:
160160
persist-credentials: false
161161

@@ -185,7 +185,7 @@ jobs:
185185
IMAGE_NAME: ${{ github.repository }}
186186

187187
steps:
188-
- uses: actions/checkout@v5
188+
- uses: actions/checkout@v6
189189
with:
190190
persist-credentials: false
191191

@@ -212,7 +212,8 @@ jobs:
212212
latest=auto
213213
tags: |
214214
type=semver,pattern={{version}},value=${{ needs.release-guard.outputs.RELEASE_VERSION }}
215-
type=raw,value=production-latest
215+
type=raw,value=production-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-') }}
216+
type=raw,value=staging-latest,enable=${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-') }}
216217
type=sha,format=long
217218
labels: |
218219
org.opencontainers.image.vendor="Cheqd Foundation Limited"

0 commit comments

Comments
 (0)