diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8fa1a8ec..f965aed8 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 @@ -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" @@ -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 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5b143ebd..770ed29e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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