From fcde9022e5a8bf0373b347aba40a4a69e8d6f520 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Tue, 10 Sep 2024 18:30:38 -0300 Subject: [PATCH] bump github actions versions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83a55e1..3ac76cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Install Poetry" run: "pip install poetry" - name: Set up Python ${{ matrix.python-version }} @@ -34,7 +34,7 @@ jobs: - name: Install dependencies run: "poetry install --no-interaction --all-extras --with dev" - run: "pip install pre-commit" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}