From 4b3be4710757bb5f567021724577ef9a281cdad6 Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Wed, 17 Jan 2024 23:56:02 +0100 Subject: [PATCH 1/4] update --- .github/workflows/pull_request_doc_qa.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull_request_doc_qa.yaml b/.github/workflows/pull_request_doc_qa.yaml index d26dcc3..e29ac4a 100644 --- a/.github/workflows/pull_request_doc_qa.yaml +++ b/.github/workflows/pull_request_doc_qa.yaml @@ -41,8 +41,7 @@ jobs: - name: Spell check uses: errata-ai/vale-action@v2.0.1 with: - version: 2.30.0 - styles: https://github.com/errata-ai/write-good/releases/latest/download/write-good.zip + version: 3.0.5 files: ${{inputs.DOC_SRC}} env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} From 5121c113f3878cee108269a8b708a1a1afd29a36 Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Thu, 18 Jan 2024 00:09:49 +0100 Subject: [PATCH 2/4] update --- .github/workflows/pull_request_doc_qa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull_request_doc_qa.yaml b/.github/workflows/pull_request_doc_qa.yaml index e29ac4a..f04abfd 100644 --- a/.github/workflows/pull_request_doc_qa.yaml +++ b/.github/workflows/pull_request_doc_qa.yaml @@ -42,6 +42,7 @@ jobs: uses: errata-ai/vale-action@v2.0.1 with: version: 3.0.5 + fail_on_error: true files: ${{inputs.DOC_SRC}} env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} From a0edfd9e0d087220342ae10abbc5759eea8adc94 Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Fri, 19 Jan 2024 14:28:54 +0100 Subject: [PATCH 3/4] update --- .github/workflows/pull_request_doc_qa.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull_request_doc_qa.yaml b/.github/workflows/pull_request_doc_qa.yaml index f04abfd..0a038c6 100644 --- a/.github/workflows/pull_request_doc_qa.yaml +++ b/.github/workflows/pull_request_doc_qa.yaml @@ -38,14 +38,15 @@ jobs: with: ref: ${{github.event.pull_request.head.sha}} submodules: recursive + - name: Install Vale + run: | + wget https://github.com/errata-ai/vale/releases/download/v3.0.5/vale_3.0.5_Linux_64-bit.tar.gz -O vale.tar.gz + tar -xvzf vale.tar.gz vale + rm vale.tar.gz - name: Spell check - uses: errata-ai/vale-action@v2.0.1 - with: - version: 3.0.5 - fail_on_error: true - files: ${{inputs.DOC_SRC}} - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + run: | + ./vale sync + ./vale ${{inputs.DOC_SRC}} style_check: runs-on: ubuntu-latest From 4c5337d565364df4a8f819416353aff0a0a4c27c Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Sat, 20 Jan 2024 11:34:25 +0100 Subject: [PATCH 4/4] update --- renovate.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 39a2b6e..ece8d43 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,21 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" + ], + "labels": [ + "dependencies" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": [ + "\\.yaml$" + ], + "matchStrings": [ + "https:\/\/github.com\/(?.*)\/releases\/download\/(?.*)\/.*.tar.gz" + ], + "datasourceTemplate": "github-release-attachments" + } ] }