From 277ab2417430e133bb696a251a929ec1318fd457 Mon Sep 17 00:00:00 2001 From: Ruth Cheesley Date: Fri, 27 Oct 2023 12:54:05 +0100 Subject: [PATCH 1/3] Update linting.yml --- .github/workflows/linting.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 3899c5be..5d08e6c9 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -23,9 +23,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.x' cache: 'pip' From a7a16510666959404c8711e0c0319af779cf8fc4 Mon Sep 17 00:00:00 2001 From: Ruth Cheesley Date: Mon, 30 Oct 2023 23:39:59 +0000 Subject: [PATCH 2/3] Update linting.yml https://github.com/errata-ai/vale-action/issues/107 --- .github/workflows/linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 5d08e6c9..6e08cd6e 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -15,7 +15,7 @@ jobs: uses: errata-ai/vale-action@reviewdog with: # Please keep version in sync with the version in .gitpod.Dockerfile for a consistent experience - version: 2.20.2 + version: 2.29.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 951afe881bbd091966b6756660df38863668b67e Mon Sep 17 00:00:00 2001 From: Ruth Cheesley Date: Mon, 30 Oct 2023 23:40:37 +0000 Subject: [PATCH 3/3] Update .gitpod.Dockerfile https://github.com/errata-ai/vale-action/issues/107 --- .gitpod.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index fcd2e0dc..e345cbca 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10 # Don't update to a higher version until this issue has been fixed: https://github.com/errata-ai/vale/issues/528 # Please keep version in sync with the version in .github/workflows/linting.yml for a consistent experience -ENV VALE_VERSION=2.20.2 +ENV VALE_VERSION=2.29.2 WORKDIR /workspace