From 0ed43356a69548f73d1d6cd26343edcf1ee539eb Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Fri, 8 May 2020 05:03:23 +0530 Subject: [PATCH] Update example to newer actions/* versions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92bbe9b..ea555e6 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 - name: set PY run: echo "::set-env name=PY::$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')" - uses: actions/cache@v1