From 55c43f78cbecf606d9855c16053fa2c28aeb3342 Mon Sep 17 00:00:00 2001 From: Valentin Berlier Date: Mon, 22 Jul 2024 01:01:59 +0200 Subject: [PATCH] chore: update workflow --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66de25e..55c1fdc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python @@ -26,7 +26,7 @@ jobs: python-version: ${{ env.PYTHON_VERSION }} - name: Cache poetry id: cache-poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.local key: poetry-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ env.POETRY_VERSION }} @@ -38,7 +38,7 @@ jobs: virtualenvs-in-project: true - name: Cache venv id: cache-venv - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ env.POETRY_VERSION }}-${{ hashFiles('poetry.lock') }} @@ -49,7 +49,7 @@ jobs: run: poetry install - name: Setup npm cache id: cache-npm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: npm-${{ runner.os }}-${{ hashFiles('package-lock.json') }}