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
4 changes: 4 additions & 0 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
persist-credentials: false

- name: check diff
id: check_diff
run: |
Expand All @@ -45,11 +47,13 @@ jobs:
echo '> yes'
echo "result=bump" >> "$GITHUB_OUTPUT"
fi

- name: Install Node.js 16
if: steps.check_diff.outputs.result == 'bump'
uses: actions/setup-node@v3
with:
node-version: 16

- name: bump version in params/version.go
if: steps.check_diff.outputs.result == 'bump'
run: node .github/scripts/bump_version_dot_go.mjs
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Set up QEMU
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Set up QEMU
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0
Expand All @@ -21,6 +23,7 @@ jobs:
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0
with:
cache-binary: false

- name: Extract docker metadata
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/l2geth_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build
run: |
Expand All @@ -48,6 +50,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build
run: |
Expand All @@ -66,6 +70,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Lint
run: |
Expand All @@ -86,6 +92,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- run: goimports -local github.com/scroll-tech/go-ethereum/ -w .

Expand All @@ -107,6 +115,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- run: go mod tidy

Expand All @@ -128,6 +138,8 @@ jobs:

- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Test
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ jobs:
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- run: semgrep ci
Loading