From d01b1c4ec82aaa5e57b87439541af9e15dd48b4f Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Mon, 25 Jul 2022 21:52:04 -0700 Subject: [PATCH] Update GH Actions versions --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 756a79de1b..5f9631c261 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,15 +4,14 @@ on: - pull_request jobs: syntax: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: 3.7 - - name: Set up Python - run: | - python -m pip install pyyaml colormath + - name: Install python dependencies + run: pip install pyyaml colormath - name: Set up xmllint run: sudo apt-get install -qq --no-install-recommends libxml2-utils - name: Set up shell