Skip to content

Commit

Permalink
💚 Upgrade GitHub actions/checkout@v1 --> v2 (#5)
Browse files Browse the repository at this point in the history
* Upgrade GitHub actions/checkout@v1 --> v2

https://github.com/actions/checkout/releases

* on: [push, pull_request]
  • Loading branch information
cclauss authored and ddelange committed Jan 10, 2020
1 parent ea60e15 commit 74f5a85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: GH

on: [push]
on: [push, pull_request]

jobs:
CI:
Expand All @@ -10,7 +10,7 @@ jobs:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v1
Expand Down

0 comments on commit 74f5a85

Please sign in to comment.