From 4d6e6a8f8dc71582c1695e21de0b8077ec3b8c79 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Wed, 26 Aug 2020 19:02:48 -0400 Subject: [PATCH 1/2] Update README to use latest setup-python version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fe68da..6ec97ed 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 - uses: pre-commit/action@v2.0.0 ``` From b305c68aec03be4c44294850018d96eb4007a332 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Wed, 26 Aug 2020 19:04:09 -0400 Subject: [PATCH 2/2] Same for actions/checkout. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ec97ed..85f70d5 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - uses: pre-commit/action@v2.0.0 ```