From 2fecd9edfe2119d51875fa0db1d4522bdea74600 Mon Sep 17 00:00:00 2001 From: Devrim <46989091+devrimcavusoglu@users.noreply.github.com> Date: Tue, 10 Oct 2023 20:54:16 +0300 Subject: [PATCH] Update CI actions versions. (#134) --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69b43a2..4296c7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,15 +17,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Restore Ubuntu cache - uses: actions/cache@v1 + uses: actions/cache@v3 if: matrix.operating-system == 'ubuntu-latest' with: path: ~/.cache/pip @@ -33,7 +33,7 @@ jobs: restore-keys: ${{ matrix.os }}-${{ matrix.python-version }}- - name: Restore MacOS cache - uses: actions/cache@v1 + uses: actions/cache@v3 if: matrix.operating-system == 'macos-latest' with: path: ~/Library/Caches/pip @@ -41,7 +41,7 @@ jobs: restore-keys: ${{ matrix.os }}-${{ matrix.python-version }}- - name: Restore Windows cache - uses: actions/cache@v1 + uses: actions/cache@v3 if: matrix.operating-system == 'windows-latest' with: path: ~\AppData\Local\pip\Cache