Skip to content

Commit

Permalink
geth v1.13.15
Browse files Browse the repository at this point in the history
mamoru_v1:
Fix/fix version errors (ethereum#87) 1035a6b
geth-mamoru-core-sdk v1.13.11-0.11.3
  • Loading branch information
gofmanaa committed Jul 3, 2024
1 parent ecd08e0 commit 7698df7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/mamoru-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 1.21.x

- name: Setup SSH for Private Repository Access
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/cache@v3
with:
Expand All @@ -39,18 +44,13 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Setup SSH for Private Repository Access
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Set Git to use SSH for GitHub
run: git config --global url."git@github.com:".insteadOf "https://github.com/"

- name: Test Build
run: |
ls ~/.ssh
go mod download
make geth
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/mamoru-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
go-version: 1.21.x
- run: go version

- name: Setup SSH for Private Repository Access
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/cache@v3
with:
Expand All @@ -40,10 +45,6 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Setup SSH for Private Repository Access
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Set Git to use SSH for GitHub
run: git config --global url."git@github.com:".insteadOf "https://github.com/"
Expand Down

0 comments on commit 7698df7

Please sign in to comment.