From ef3ac15be3425b427966b5ed93722080cd8bb4d8 Mon Sep 17 00:00:00 2001 From: Gautam Botrel Date: Thu, 30 Mar 2023 09:52:08 -0500 Subject: [PATCH 1/2] build: update ci github action dependencies --- .github/workflows/pr.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6068d6e3e1..89f04c66f1 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -8,14 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - name: install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: 1.20.x - name: checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: | ~/go/pkg/mod @@ -50,12 +50,12 @@ jobs: - staticcheck steps: - name: install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: checkout code - uses: actions/checkout@v2 - - uses: actions/cache@v2 + uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: | ~/go/pkg/mod @@ -88,7 +88,7 @@ jobs: steps: - name: Notify slack -- workflow failed id: slack - uses: slackapi/slack-github-action@v1.19.0 + uses: slackapi/slack-github-action@v1.23.0 with: payload: | { @@ -111,7 +111,7 @@ jobs: steps: - name: Notify slack -- workflow succeeded id: slack - uses: slackapi/slack-github-action@v1.19.0 + uses: slackapi/slack-github-action@v1.23.0 with: payload: | { From 4a22abddf4ba725d7811adb9fa72f0892f095de8 Mon Sep 17 00:00:00 2001 From: Gautam Botrel Date: Thu, 30 Mar 2023 14:18:20 -0500 Subject: [PATCH 2/2] build: bump go1.20 --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 89f04c66f1..06d34a0c9d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -72,7 +72,7 @@ jobs: go test -p=1 -v -timeout=30m ./... go test -p=1 -tags=purego -v -timeout=30m ./... - name: Test (32 bits & race) - if: (matrix.os == 'ubuntu-latest') && (matrix.go-version == '1.19.x') + if: (matrix.os == 'ubuntu-latest') && (matrix.go-version == '1.20.x') run: | go test -p=1 -v -timeout=30m -short -race ./ecc/bn254/... go test -p=1 -v -timeout=30m -short -tags=noadx ./ecc/bn254/...