Skip to content

Commit

Permalink
dependabot and action cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Aug 1, 2023
1 parent 1441eb5 commit 7a5e60d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
# See https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
14 changes: 5 additions & 9 deletions .github/workflows/ansible-linting-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,22 @@
name: Ansible Lint check

# yamllint disable-line rule:truthy
on:
push:
branches: '*'
pull_request:
branches: '*'
on: [push, pull_request]

jobs:
build:

name: Ansible Lint
runs-on: ubuntu-latest

steps:
- name: 'checkout git repo'
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
lfs: true
submodules: true
fetch-depth: 0

- name: 'Lint Ansible Playbook'
uses: ansible/ansible-lint-action@v6
uses: ansible/ansible-lint-action@v6.17.0
with:
path: "."
path: "site.yml"
3 changes: 2 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
uses: actions/checkout@v3.5.3

- name: GitHub Action for pylint
uses: cclauss/GitHub-Action-for-pylint@0.7.0
9 changes: 4 additions & 5 deletions .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ jobs:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'checkout git repo'
uses: actions/checkout@v3.5.3

- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
uses: karancode/yamllint-github-action@v2.1.1
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'
yamllint_strict: false
yamllint_comment: true

0 comments on commit 7a5e60d

Please sign in to comment.