keyvan 10 kuukautta sitten
vanhempi
sitoutus
7d9591d0b7
1 muutettua tiedostoa jossa 6 lisäystä ja 7 poistoa
  1. 6 7
      .github/workflows/ci-pre-commit.yml

+ 6 - 7
.github/workflows/ci-pre-commit.yml

@@ -13,7 +13,7 @@ jobs:
   pre-commit:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
         with:
           # Need to grab the history of the PR
           fetch-depth: 0
@@ -27,18 +27,17 @@ jobs:
           rustup install 1.73.0
       - name: Install protoc
         uses: arduino/setup-protoc@v3
-      - uses: actions/checkout@v4
       - name: Install poetry
         run: pipx install poetry
       - uses: actions/setup-python@v2
         with:
           python-version: ${{ env.PYTHON_VERSION }}
         id: setup_python
-      - name: Cache Poetry cache
-        uses: actions/cache@v3
-        with:
-          path: ~/.cache/pypoetry
-          key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
+      # - name: Cache Poetry cache
+      #   uses: actions/cache@v3
+      #   with:
+      #     path: ~/.cache/pypoetry
+      #     key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
       - uses: pre-commit/action@v3.0.0
         if: ${{ github.event_name == 'pull_request' }}
         # with: