Bump pillow from 10.0.1 to 10.2.0 (#25) #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
push: | |
branches: [main] | |
jobs: | |
pre-commit-ci: | |
# runs-on: ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
timeout-minutes: 15 | |
steps: | |
- name: check out code | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- name: setup python | |
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4 | |
with: | |
python-version: "3.11" | |
- uses: actions/cache@v3 | |
name: cache tflint plugin directory | |
with: | |
path: ~/.tflint.d/plugins | |
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} | |
- uses: terraform-linters/setup-tflint@ba6bb2989f94daf58a4cc6eac2c1ca7398a678bf # v3 | |
name: setup tflint | |
with: | |
tflint_version: v0.47.0 | |
- name: tflint version | |
run: tflint --version | |
- name: tflint init | |
run: tflint --init | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: install pre-commit | |
run: | | |
pip install pre-commit | |
- name: install requirements | |
run: | | |
pip install -r requirements.txt | |
- name: install pre-commit | |
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 |