Update GitHub Action Versions #42
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
# yamllint disable rule:line-length | |
--- | |
name: CI lint | |
# This workflow runs the taskfile in the root to ensure | |
# that the changes added to the repository do not trigger | |
# linter errors. This covers yaml files and github actions. | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
# Make sure to cancel previous job runs in case a PR | |
# gets new commits. Changes being merged to the main | |
# branch will continue to run. | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }}-task-lint | |
cancel-in-progress: true | |
# Set the default install path for `go install`. | |
env: | |
GOBIN: /usr/local/bin | |
jobs: | |
tools-latest: | |
name: 'Lint tyk-github-actions repo' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: arduino/[email protected] | |
with: | |
version: 3 | |
- name: 'Run task lint' | |
run: task lint |