Skip to content

Update k8s libs to v1.27.16 and use go-build v0.89 (golang v1.22.9) #61

Update k8s libs to v1.27.16 and use go-build v0.89 (golang v1.22.9)

Update k8s libs to v1.27.16 and use go-build v0.89 (golang v1.22.9) #61

Workflow file for this run

# Lint YAML files present in the repository.
#
# Currently we only lint semaphore yaml files, to
# avoid excessive confusion from developers by
# throwing unnecessary warnings or errors on arbitrary
# yaml files.
#
# If you want to lint other YAML files in this
# repository, *add a second workflow* and make
# sure that you're specifying file paths in the
# on:pull_request section and in the `with:file_or_dir`
# section of the block itself.
---
name: Yaml Lint
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- '.semaphore/**/*.yml'
- '.semaphore/**/*.yml.tpl'
- '.semaphore/.yamllint.yml'
jobs:
lintSemaphoreYaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .semaphore/**/*.yml .semaphore/**/*.yml.tpl
config_file: .semaphore/.yamllint.yml
- uses: actions/upload-artifact@v4
if: always()
with:
name: yamllint-logfile
path: ${{ steps.yaml-lint.outputs.logfile }}