From dc2fe4905b9cda33d0837389c9c18cd5dfc1d48f Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Fri, 28 Nov 2025 17:36:16 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(frontend)=20upgrade=20some?= =?UTF-8?q?=20gitHub=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some github actions were using outdated versions. This commit upgrades them to use a common versions for all our workflows. --- .github/workflows/impress.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 2e01cd6804..86867b5a54 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -19,7 +19,7 @@ jobs: if: github.event_name == 'pull_request' # Makes sense only for pull requests steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: show @@ -46,7 +46,7 @@ jobs: github.event_name == 'pull_request' steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 50 - name: Check that the CHANGELOG has been modified in the current branch @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Check CHANGELOG max line length run: | max_line_length=$(cat CHANGELOG.md | grep -Ev "^\[.*\]: https://github.com" | wc -L) @@ -70,7 +70,7 @@ jobs: if: github.event_name == 'pull_request' steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install codespell run: pip install --user codespell - name: Check for typos @@ -92,7 +92,7 @@ jobs: working-directory: src/backend steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Python uses: actions/setup-python@v5 with: