Skip to content

Commit

Permalink
fix typo for getting runner os
Browse files Browse the repository at this point in the history
  • Loading branch information
bgunnar5 committed Sep 24, 2024
1 parent c136058 commit 56a6a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-pr_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ os.runner }}-pip-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }}

- name: Install dependencies
run: |
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ os.runner }}-pip-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 56a6a05

Please sign in to comment.