Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Updated workflow runners
Browse files Browse the repository at this point in the history
  • Loading branch information
spietras committed Jul 27, 2022
1 parent 9b4b20a commit d1b2a66
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
docs:
name: Deploy docs
# better to use pinned version here
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
draft:
name: Update draft release
# better to use pinned version here
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
pypi:
name: Deploy to PyPI
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- # get repository code
name: Checkout code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
matrix:
# better to use pinned versions here
config:
- { os: ubuntu-20.04, shell: bash -l }
- { os: macos-10.15, shell: bash -l }
- { os: windows-2019, shell: cmd /C CALL }
- { os: ubuntu-latest, shell: bash -l }
- { os: macos-latest, shell: bash -l }
- { os: windows-latest, shell: cmd /C CALL }
runs-on: ${{ matrix.config.os }}
defaults:
run:
Expand Down

0 comments on commit d1b2a66

Please sign in to comment.