Skip to content

chore(deps): Bump GoogleCloudPlatform/release-please-action from 4.1.0 to 4.1.1 #82

chore(deps): Bump GoogleCloudPlatform/release-please-action from 4.1.0 to 4.1.1

chore(deps): Bump GoogleCloudPlatform/release-please-action from 4.1.0 to 4.1.1 #82

Workflow file for this run

# These github actions will perform linting using pre-commit.
# yamllint disable rule:line-length
# spell-checker: disable
---
name: pre-commit
# yamllint disable-line rule:truthy
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
pull-requests: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install talisman
run: |
sudo curl -sLo /usr/local/bin/talisman https://github.com/thoughtworks/talisman/releases/download/v1.30.0/talisman_linux_amd64
sudo chmod 0755 /usr/local/bin/talisman
- name: Install terraform-docs
run: |
sudo sh -c 'curl -sL https://github.com/terraform-docs/terraform-docs/releases/download/v0.16.0/terraform-docs-v0.16.0-linux-amd64.tar.gz | tar xzf - -C /usr/local/bin'
sudo chmod 0755 /usr/local/bin/terraform-docs
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.5'
bundler-cache: true
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.1