Skip to content

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #2259

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #2259

Workflow file for this run

name: install_script
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
vm:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install latest version
run: |
./install_linux.sh
tflint -v
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install specific version
env:
TFLINT_VERSION: v0.15.0
run: |
./install_linux.sh
tflint -v
- name: Install to custom path
run: |
mkdir "$TFLINT_INSTALL_PATH"
./install_linux.sh
"$TFLINT_INSTALL_PATH/tflint" -v
env:
TFLINT_INSTALL_PATH: ${{ github.workspace }}/install-path
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
- name: Non-existent version
id: fail
continue-on-error: true
# Install instructions pipe the script from curl to bash
# Passing scripts via stdin can have differing behavior from passing as a file arg
run: |
bash < install_linux.sh
tflint -v
env:
TFLINT_VERSION: vBROKEN
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check failure
if: steps.fail.outcome != 'failure'
run: |
echo "::error::Expected previous step to fail, outcome was ${{ steps.fail.outcome }}"
exit 1
container:
runs-on: ubuntu-latest
container:
image: hashicorp/terraform
options: --user 0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
apk add bash curl curl-dev unzip
- name: Install latest version
run: |
./install_linux.sh
tflint -v
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install specific version
env:
TFLINT_VERSION: v0.15.0
run: |
./install_linux.sh
tflint -v