chore(ci): update actions/setup-python action to v5 #43
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: 'terraform-scaleway-loadbalancer' | |
on: | |
push: | |
branches: | |
- main | |
- release | |
pull_request: | |
branches: | |
- main | |
- release | |
workflow_dispatch: | |
jobs: | |
renovate-config-check: | |
name: 'renovate:config' | |
runs-on: ubuntu-20.04 | |
if: github.ref != 'refs/heads/release' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '15' | |
check-latest: true | |
- name: Install Renovate | |
run: npm install -g renovate | |
- name: Check Renovate configuraton | |
run: renovate-config-validator | |
terraform-pre-commit: | |
name: 'terraform:pre-commit' | |
runs-on: ubuntu-20.04 | |
if: github.ref != 'refs/heads/release' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: ${{ secrets.TERRAFORM_VERSION }} | |
- uses: actions/setup-python@v5 | |
- name: Install terraform tooling | |
run: | | |
curl -L "$(curl -s https://api.github.com/repos/terraform-docs/terraform-docs/releases/latest | grep -o -E "https://.+?-linux-amd64.tar.gz")" > terraform-docs.tgz && tar xzf terraform-docs.tgz terraform-docs && chmod +x terraform-docs && sudo mv terraform-docs /usr/bin/ | |
curl -L "$(curl -s https://api.github.com/repos/terraform-linters/tflint/releases/latest | grep -o -E "https://.+?_linux_amd64.zip")" > tflint.zip && unzip tflint.zip tflint && rm tflint.zip && sudo mv tflint /usr/bin/ | |
- name: Log tooling version | |
run: | | |
tflint --version | |
terraform-docs --version | |
terraform -version | |
- name: Check modules | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: --show-diff-on-failure --all-files | |
- name: 'slack:failure' | |
if: failure() | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: voxmedia/github-action-slack-notify-build@v2 | |
with: | |
channel: ${{ secrets.SLACK_CHANNEL }} | |
status: failure | |
color: danger | |
terraform-release: | |
if: github.ref == 'refs/heads/release' | |
name: 'terraform:release' | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v2 | |
with: | |
branches: | | |
[ | |
'release' | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'slack:success' | |
if: success() | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: voxmedia/github-action-slack-notify-build@v2 | |
with: | |
channel: ${{ secrets.SLACK_CHANNEL }} | |
status: SUCCESS | |
color: good | |
- name: 'slack:failure' | |
if: failure() | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: voxmedia/github-action-slack-notify-build@v2 | |
with: | |
channel: ${{ secrets.SLACK_CHANNEL }} | |
status: failure | |
color: danger |