From 0a2fae250e5231f1512939101a9e2d822e46fd2c Mon Sep 17 00:00:00 2001 From: L3D Date: Sun, 21 Jan 2024 21:06:16 +0100 Subject: [PATCH 1/2] update submodules --- .github/dependabot.yml | 9 +++++++++ .github/workflows/pythonpackage.yml | 2 +- .github/workflows/yamllint.yaml | 26 +++++++++++++------------- 3 files changed, 23 insertions(+), 14 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..dde6f4a --- /dev/null +++ b/.github/dependabot.yml @@ -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" diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index bd71739..ec63bc9 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9] + python-version: [3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/yamllint.yaml b/.github/workflows/yamllint.yaml index 39c49f8..5e62f57 100644 --- a/.github/workflows/yamllint.yaml +++ b/.github/workflows/yamllint.yaml @@ -1,22 +1,22 @@ --- -name: 'Yamllint GitHub Actions' +name: Yamllint check # yamllint disable-line rule:truthy on: [push, pull_request] jobs: - yamllint: - name: 'Yamllint' + build: + name: Yamllint runs-on: ubuntu-latest + steps: - - name: 'Checkout' - uses: actions/checkout@master - - name: 'Yamllint' - uses: karancode/yamllint-github-action@master + - name: Checkout git repo + uses: actions/checkout@v4 + with: + submodules: true + fetch-depth: 0 + + - name: Run yamllint + uses: ansible-actions/yamllint-action@v0.0.1 with: - yamllint_file_or_dir: '.' - yamllint_config_filepath: './.yamllint' - yamllint_strict: false - yamllint_comment: true -# env: -# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN } + target: "./" From f45a3db864cf94d113701e60c051dca1d27b1441 Mon Sep 17 00:00:00 2001 From: L3D Date: Sun, 21 Jan 2024 21:08:16 +0100 Subject: [PATCH 2/2] update --- .github/workflows/pythonpackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index ec63bc9..7593fa3 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.10, 3.11] + python-version: ['3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2