Skip to content

Commit

Permalink
Merge pull request #180 from derekpierre/tooling-update
Browse files Browse the repository at this point in the history
Tooling update
  • Loading branch information
derekpierre authored Nov 9, 2023
2 parents 7a8997f + 80f1462 commit e3e1800
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache Compiler Installations
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.solcx
Expand All @@ -34,7 +34,7 @@ jobs:
- run: npm install

- name: Setup Python 3.11
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
cache: "pip"
python-version: "3.11"
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.11.0
hooks:
- id: black

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.21
rev: v5.10.1
hooks:
- id: isort

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
rev: v3.0.3
hooks:
- id: prettier

Expand Down

0 comments on commit e3e1800

Please sign in to comment.