summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kutik <daniel.kutik@lavawerk.com>2022-11-25 13:45:51 +0100
committerMike Frysinger <vapier@google.com>2022-11-26 00:57:04 +0000
commita98a5ebc6d96ea8e62e44bef5c3180e319a246c0 (patch)
tree63cb4c8f40782584dc386e7e24a1da5e1f88d857
parentf8d342beac50ec4456a593cb981a3c7702d4f6b2 (diff)
downloadgit-repo-a98a5ebc6d96ea8e62e44bef5c3180e319a246c0.tar.gz
Update GH Action test-ci.yml dependencies
Updating version of checkout and setup-python actions. Also making sure we install tox, tox-gh-actions into our venv. Changes based on tox-gh-actions README. Signed-off-by: Daniel Kutik <daniel.kutik@lavawerk.com> Change-Id: I18946a8b41d5a3c350deee3ddbde77b4c0b3bdfe Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/353123 Reviewed-by: Mike Frysinger <vapier@google.com>
-rw-r--r--.github/workflows/test-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml
index ff03eb22..0b9ef72c 100644
--- a/.github/workflows/test-ci.yml
+++ b/.github/workflows/test-ci.yml
@@ -18,14 +18,14 @@ jobs:
18 runs-on: ${{ matrix.os }} 18 runs-on: ${{ matrix.os }}
19 19
20 steps: 20 steps:
21 - uses: actions/checkout@v2 21 - uses: actions/checkout@v3
22 - name: Set up Python ${{ matrix.python-version }} 22 - name: Set up Python ${{ matrix.python-version }}
23 uses: actions/setup-python@v1 23 uses: actions/setup-python@v4
24 with: 24 with:
25 python-version: ${{ matrix.python-version }} 25 python-version: ${{ matrix.python-version }}
26 - name: Install dependencies 26 - name: Install dependencies
27 run: | 27 run: |
28 python -m pip install --upgrade pip 28 python -m pip install --upgrade pip
29 pip install tox tox-gh-actions 29 python -m pip install tox tox-gh-actions
30 - name: Test with tox 30 - name: Test with tox
31 run: tox 31 run: tox