[release-2.5] fix: cloud init problems with ubuntu (#1158) #3918
Workflow file for this run
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: Lint | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
tags: | |
- 'v*' | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
super-linter: | |
runs-on: | |
- self-hosted | |
- small | |
steps: | |
- name: Checkout konvoy-image-builder repository | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- name: Set environment Variables from Dotenv | |
uses: c-py/action-dotenv-to-setenv@v4 | |
with: | |
env-file: .github/super-linter.env | |
- name: Run Super-Linter | |
uses: github/[email protected] | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# NOTE(jkoelker) super-linter is broken for go packages | |
# https://github.com/github/super-linter/issues/143 | |
VALIDATE_GO: false | |
# NOTE(jongiddy) super-linter is broken for Packer HCL files | |
# https://github.com/github/super-linter/pull/1707 | |
# This can be removed when a release > 4.2.2 exists. | |
VALIDATE_TERRAGRUNT: false | |
# we don't need a _pedantic_ natural language linter | |
VALIDATE_NATURAL_LANGUAGE: false | |
# we use terraform to provision *test* infrastructure that is deleted | |
VALIDATE_TERRAFORM_TFLINT: false | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout konvoy-image-builder repository | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- name: Run golangci lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
#version of golangci-lint to use with | |
version: latest |