diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 3899c5be..6e08cd6e 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 @@ -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 }} @@ -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' 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