Skip to content

Commit

Permalink
latest action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bug-or-feature committed Jan 24, 2024
1 parent ed6dc54 commit 1c645f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/slow-test-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,18 @@ on:
jobs:
build:

runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.10.13 ]
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "develop"

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/slow-test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,18 @@ on:
jobs:
build:

runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.8, 3.7 ]
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: "master"

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.8'

- name: Install dependencies
run: |
Expand Down

0 comments on commit 1c645f7

Please sign in to comment.