diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci-tests.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 13b849d0f..f9ade8eda 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -47,9 +47,9 @@ jobs: name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.py }} architecture: ${{ matrix.architecture }} @@ -60,9 +60,9 @@ jobs: runs-on: ubuntu-20.04 name: Validate coverage steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.8 architecture: x64 @@ -72,9 +72,9 @@ jobs: runs-on: ubuntu-20.04 name: Build the documentation steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.8 architecture: x64 @@ -84,9 +84,9 @@ jobs: runs-on: ubuntu-20.04 name: Lint the package steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.8 architecture: x64 |
