From 90cf863305f6f6c381e8381943a32fbb6eedd002 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 15 Sep 2022 10:05:57 -0700 Subject: [PATCH] Update pip cache in publish-installers workflow --- .github/workflows/publish-installers.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-installers.yml b/.github/workflows/publish-installers.yml index 6b9b9c8b..ad590098 100644 --- a/.github/workflows/publish-installers.yml +++ b/.github/workflows/publish-installers.yml @@ -54,14 +54,9 @@ jobs: - name: Set Up Python uses: actions/setup-python@v4.2.0 with: - python-version: 3.9 - - - name: Cache Dependencies - uses: actions/cache@v3.0.8 - with: - path: ~\AppData\Local\pip\Cache - key: ${{ runner.os }}-pip-${{ hashFiles('package/requirements-package.txt') }} - restore-keys: ${{ runner.os }}-pip- + python-version: '3.9' + cache: pip + cache-dependency-path: '**/requirements*.txt' - name: Install Dependencies run: |