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') }}