From 7248484e0f2d486408c584a0ea293f625cfddb29 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Fri, 21 Apr 2023 14:26:30 +0100 Subject: [PATCH] Bump GHA actions part of https://github.com/matrix-org/synapse/issues/14203 --- .github/workflows/pipeline.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 10b10505..0714b652 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -8,8 +8,8 @@ jobs: check-code-style: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: "3.7" - run: python -m pip install tox @@ -18,8 +18,8 @@ jobs: check-types-mypy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: "3.7" - run: python -m pip install tox @@ -30,8 +30,8 @@ jobs: needs: [check-code-style, check-types-mypy] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: "3.7" - run: python -m pip install -e . @@ -42,8 +42,8 @@ jobs: needs: [ check-code-style, check-types-mypy ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: "3.7" - name: Patch pyproject.toml to require oldest dependencies