Skip to content

Bump codecov/codecov-action from 3.1.0 to 4.5.0 #182

Bump codecov/codecov-action from 3.1.0 to 4.5.0

Bump codecov/codecov-action from 3.1.0 to 4.5.0 #182

Workflow file for this run

name: Auto Yaml Lint
on:
push:
branches:
- main
- release-*
- github_pages
paths:
- '**.yml'
- '**.yaml'
pull_request:
branches:
- main
- release-*
- github_pages
paths:
- '**.yml'
- '**.yaml'
# checkout all markdown
workflow_dispatch:
inputs:
ref:
description: 'check all yaml for branch, sha, tag'
required: true
default: main
jobs:
linkyaml:
runs-on: ubuntu-latest
name: Yaml Lint
steps:
- name: Checkout
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.tag }}
- name: Checkout
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/checkout@v3
- name: yaml-lint
id: yaml-lint
continue-on-error: true
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: '.'
config_file: '.github/yamllint-conf.yml'
- name: Upload artifact digests
if: ${{ steps.yaml-lint.outcome == 'failure' }}
uses: actions/upload-artifact@v3.1.0
with:
name: log
path: ${{ steps.yaml-lint.outputs.logfile }}
retention-days: 1
- name: Result
if: ${{ steps.yaml-lint.outcome == 'failure' }}
run: |
exit 1