Skip to content

Commit 896df0a

Browse files
authored
Merge pull request #1004 from dashpay/release_1.4.0
2 parents 2913d54 + 37273ed commit 896df0a

File tree

166 files changed

+11391
-6007
lines changed

Some content is hidden

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

166 files changed

+11391
-6007
lines changed

.github/actions/bls/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
steps:
1616
- uses: actions/setup-go@v2
1717
with:
18-
go-version: "1.23"
18+
go-version: "1.23.2"
1919
- uses: actions/checkout@v2
2020
with:
2121
submodules: true

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updates:
55
directory: "/"
66
schedule:
77
interval: weekly
8-
open-pull-requests-limit: 10
8+
open-pull-requests-limit: 5
99
# - package-ecosystem: npm
1010
# directory: "/docs"
1111
# schedule:

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
goos: ["linux"]
2222
timeout-minutes: 55
2323
steps:
24-
- uses: actions/setup-go@v5.0.1
24+
- uses: actions/setup-go@v5.1.0
2525
with:
26-
go-version: "1.23"
26+
go-version: "1.23.2"
2727
- uses: actions/checkout@v4
2828
- uses: technote-space/get-diff-action@v6
2929
with:
@@ -52,9 +52,9 @@ jobs:
5252
needs: build
5353
timeout-minutes: 5
5454
steps:
55-
- uses: actions/setup-go@v5.0.1
55+
- uses: actions/setup-go@v5.1.0
5656
with:
57-
go-version: "1.23"
57+
go-version: "1.23.2"
5858
- uses: actions/checkout@v4
5959
- uses: technote-space/get-diff-action@v6
6060
with:
@@ -77,9 +77,9 @@ jobs:
7777
needs: build
7878
timeout-minutes: 5
7979
steps:
80-
- uses: actions/setup-go@v5.0.1
80+
- uses: actions/setup-go@v5.1.0
8181
with:
82-
go-version: "1.23"
82+
go-version: "1.23.2"
8383
- uses: actions/checkout@v4
8484
- uses: technote-space/get-diff-action@v6
8585
with:

.github/workflows/check-generated.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
check-mocks:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/setup-go@v5.0.1
24+
- uses: actions/setup-go@v5.1.0
2525
with:
26-
go-version: "1.23"
26+
go-version: "1.23.2"
2727

2828
- uses: actions/checkout@v4
2929

3030
- name: "Check generated mocks"
3131
run: |
3232
set -euo pipefail
3333
34-
readonly MOCKERY=2.46.2 # N.B. no leading "v"
34+
readonly MOCKERY=2.50.0 # N.B. no leading "v"
3535
curl -sL "https://github.com/vektra/mockery/releases/download/v${MOCKERY}/mockery_${MOCKERY}_Linux_x86_64.tar.gz" | tar -C /usr/local/bin -xzf -
3636
make mockery 2>/dev/null
3737
38-
if ! git diff --stat --exit-code ; then
38+
if ! git diff --exit-code ; then
3939
echo ">> ERROR:"
4040
echo ">>"
4141
echo ">> Generated mocks require update (either Mockery or source files may have changed)."
@@ -47,9 +47,9 @@ jobs:
4747
check-proto:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/setup-go@v5.0.1
50+
- uses: actions/setup-go@v5.1.0
5151
with:
52-
go-version: "1.23"
52+
go-version: "1.23.2"
5353

5454
- uses: actions/checkout@v4
5555
with:

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
# on Docker Hub, as Github caches are not available for other branches.
8787
- name: Build and cache image with dependencies
8888
id: docker_bls
89-
uses: docker/build-push-action@v6.9.0
89+
uses: docker/build-push-action@v6.10.0
9090
with:
9191
context: .
9292
file: ./DOCKER/Dockerfile
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: Publish to Docker Hub
104104
id: docker_build
105-
uses: docker/build-push-action@v6.9.0
105+
uses: docker/build-push-action@v6.10.0
106106
with:
107107
context: .
108108
file: ./DOCKER/Dockerfile

.github/workflows/e2e.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
paths:
99
- "**Dockerfile"
1010
- "**.go"
11+
- "go.sum"
1112
push:
1213
branches:
1314
- master
@@ -26,9 +27,9 @@ jobs:
2627
CGO_LDFLAGS: "-L/usr/local/lib -ldashbls -lrelic_s -lmimalloc-secure -lgmp"
2728
CGO_CXXFLAGS: "-I/usr/local/include"
2829
steps:
29-
- uses: actions/setup-go@v5.0.1
30+
- uses: actions/setup-go@v5.1.0
3031
with:
31-
go-version: "1.23"
32+
go-version: "1.23.2"
3233

3334
- name: Set up Docker Buildx
3435
uses: docker/setup-buildx-action@v3.7.1
@@ -54,7 +55,7 @@ jobs:
5455
if: "github.event_name != 'pull_request' || env.GIT_DIFF != ''"
5556

5657
- name: Build E2E Docker image
57-
uses: docker/build-push-action@v6.9.0
58+
uses: docker/build-push-action@v6.10.0
5859
with:
5960
context: .
6061
file: test/e2e/docker/Dockerfile

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
- uses: actions/checkout@v4
3131
with:
3232
submodules: true
33-
- uses: actions/setup-go@v5.0.1
33+
- uses: actions/setup-go@v5.1.0
3434
with:
35-
go-version: "^1.23"
35+
go-version: "^1.23.2"
3636
- uses: technote-space/get-diff-action@v6
3737
with:
3838
PATTERNS: |

.github/workflows/proto-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 5
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: bufbuild/buf-setup-action@v1.35.0
17+
- uses: bufbuild/buf-setup-action@v1.47.2
1818
- uses: bufbuild/buf-lint-action@v1
1919
with:
2020
input: "proto"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
with:
1313
fetch-depth: 0
1414

15-
- uses: actions/setup-go@v5.0.1
15+
- uses: actions/setup-go@v5.1.0
1616
with:
17-
go-version: "1.23"
17+
go-version: "1.23.2"
1818

1919
- name: Build
2020
uses: goreleaser/goreleaser-action@v6

.github/workflows/stale.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
- uses: actions/stale@v9
1111
with:
1212
repo-token: ${{ secrets.GITHUB_TOKEN }}
13-
stale-pr-message: "This pull request has been automatically marked as stale because it has not had
14-
recent activity. It will be closed if no further activity occurs. Thank you
15-
for your contributions."
13+
stale-pr-message:
14+
"This pull request has been automatically marked as stale because it has not had
15+
recent activity. It will be closed if no further activity occurs. Thank you
16+
for your contributions."
1617
days-before-stale: -1
1718
days-before-close: -1
18-
days-before-pr-stale: 10
19-
days-before-pr-close: 4
19+
days-before-pr-stale: 31
20+
days-before-pr-close: 16
2021
exempt-pr-labels: "S:wip"

0 commit comments

Comments
 (0)