From 2f8f2f33a51d4dc42205dd977ac864e8aeb8ec5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sun, 9 Jun 2024 21:21:41 +0100 Subject: [PATCH] chore: bump checkout --- .github/workflows/deploy.yml | 2 +- .github/workflows/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21029f0..1bf936e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest container: python:${{ matrix.python-version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - run: python --version - run: pip install -r requirements.txt - run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 009d0cd..d15864a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest container: python:${{ matrix.python-version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - run: python --version - run: pip install -r requirements.txt - run: | @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest container: pypy:${{ matrix.python-version }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - run: pypy --version - run: pip install -r requirements.txt - run: |