Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Commit 9c0cc39

Browse files
build(deps): bump stefanzweifel/git-auto-commit-action from 5 to 6 & update brace-expansion (#80)
1 parent 633401e commit 9c0cc39

6 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@v4
6262
- uses: actions/download-artifact@v4
6363
with: {name: dist, path: ./dist/}
64-
- uses: stefanzweifel/git-auto-commit-action@v5
64+
- uses: stefanzweifel/git-auto-commit-action@v6
6565
with: {commit_message: Automatic distributive rebuild}
6666

6767
run-this-action: # non-existing files will not generate an error
@@ -71,15 +71,17 @@ jobs:
7171
fail-fast: false
7272
matrix:
7373
runs-on: [ubuntu-latest, macos-latest, windows-latest]
74-
version: [1.13.5, 1.14.5, latest]
74+
version: [1.13.5, 1.14.5] # seems like the latest version is not available for macOS
75+
include:
76+
- {runs-on: ubuntu-latest, version: latest}
77+
- {runs-on: windows-latest, version: latest}
7578
steps:
7679
- uses: actions/checkout@v4
7780
- name: Run this action
7881
uses: ./
7982
with: {version: '${{ matrix.version }}'}
8083
- run: geth version
8184
- run: abigen --version
82-
- run: bootnode -h
8385
- run: clef --version
8486
- run: evm --version
8587
- run: rlpdump -h

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Build Status][badge_build]][link_build]
99
[![License][badge_license]][link_license]
1010

11-
This action installs [Geth][geth] and its tools (`abigen`, `bootnode`, `clef`, `evm`, `rlpdump`) into your workflow. It
11+
This action installs [Geth][geth] and its tools (`abigen`, `clef`, `evm`, `rlpdump`) into your workflow. It
1212
can be run on **Linux** (`ubuntu-latest`), **macOS** (`macos-latest`), or **Windows** (`windows-latest`).
1313

1414
- 🚀 Geth downloads page: <https://geth.ethereum.org/downloads/>
@@ -24,11 +24,10 @@ jobs:
2424
steps:
2525
- uses: gacts/install-geth-tools@v1
2626
#with:
27-
# version: 1.10.19 # `latest` by default, but you can set a specific version to install, e.g.: `1.10.19`
27+
# version: 1.16.1 # `latest` by default, but you can set a specific version to install
2828

2929
- run: geth version
3030
- run: abigen --version
31-
- run: bootnode -h
3231
- run: clef --version
3332
- run: evm --version
3433
- run: rlpdump -h

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# docs: https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
33

44
name: Install Geth (Go Ethereum) and tools
5-
description: Installs Geth (Go Ethereum) and tools (abigen, bootnode, clef, evm, rlpdump) into your actions workflow
5+
description: Installs Geth (Go Ethereum) and tools (abigen, clef, evm, rlpdump) into your actions workflow
66

77
inputs:
88
version:

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"Actions",
1616
"Ethereum",
1717
"abigen",
18-
"bootnode",
1918
"clef",
2019
"evm",
2120
"rlpdump"

0 commit comments

Comments
 (0)