Skip to content

Commit

Permalink
Merge pull request #77 from dokku/formatting
Browse files Browse the repository at this point in the history
chore: rename yml to yaml
  • Loading branch information
josegonzalez authored Sep 14, 2024
2 parents 16e497c + 7321609 commit d248131
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml → .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ name: build
on:
pull_request:
branches:
- '*'
- "*"
push:
branches:
- 'master'
- "master"

jobs:
docker:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml → .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
name: 'lint'
name: "lint"

# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- '*'
- "*"
push:
branches:
- 'master'
- "master"

jobs:
hadolint:
Expand All @@ -31,8 +31,8 @@ jobs:
uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb
# v1.5.0 => 04d43ee9191307b50935a753da3b775ab695eceb
with:
config: '.github/linters/.markdown-lint.yml'
args: './README.md'
config: ".github/linters/.markdown-lint.yaml"
args: "./README.md"

shellcheck:
name: shellcheck
Expand Down Expand Up @@ -71,4 +71,4 @@ jobs:
uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c
# v3.0.2 => c19bd0523a9011c3a3960fe6640a0882b59af15d
with:
config_file: '.github/linters/.yamllint.yml'
config_file: ".github/linters/.yamllint.yaml"
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: release
on:
push:
tags:
- '*'
- "*"

jobs:
docker:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: trivy-analysis
on:
push:
branches:
- master
- "master"
pull_request:

jobs:
Expand All @@ -23,13 +23,13 @@ jobs:
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/dokku/wait:${{ github.sha }}'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
image-ref: "docker.io/dokku/wait:${{ github.sha }}"
format: "template"
template: "@/contrib/sarif.tpl"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH"

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'
sarif_file: "trivy-results.sarif"

0 comments on commit d248131

Please sign in to comment.