From 772eb4bc84eb04f07230d2753e21063b2d59bda9 Mon Sep 17 00:00:00 2001 From: Glandos Date: Sun, 23 Oct 2022 12:41:20 +0200 Subject: [PATCH] update github python actions and use pip cache --- .github/workflows/test-docs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 105992f3..49742b22 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -65,11 +65,12 @@ jobs: database: sqlite steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: Change dependencies to minimal supported versions run: sed -i -e 's/>=/==/g; s/~=.*==\(.*\)/==\1/g; s/~=/==/g;' setup.cfg if: matrix.dependencies == 'minimal'