Skip to content

Commit

Permalink
ref: upgrade actions/setup-python to a version which times out cache (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile-sentry committed Sep 13, 2022
1 parent 6d898bf commit d53c1e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-sentry/action.yml
Expand Up @@ -101,7 +101,7 @@ runs:
[ "$GITHUB_REF" = "refs/heads/master" ] && echo "PYTEST_SENTRY_ALWAYS_REPORT=1" >> $GITHUB_ENV || true
- name: Setup python
uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: ${{ inputs.python-version }}
cache: pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/backend.yml
Expand Up @@ -190,7 +190,7 @@ jobs:
app_id: ${{ secrets.SENTRY_INTERNAL_APP_ID }}
private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3
- uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
- uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: 3.8.13
- name: check requirements
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- added|modified: '**/*.py'
- added|modified: 'requirements-*.txt'
- uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
- uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: 3.8.13
cache: pip
Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e # v2

- name: Setup Python
uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: 3.8.13
cache: pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/development-environment.yml
Expand Up @@ -54,7 +54,7 @@ jobs:

# This handles Python's cache
- name: Setup Python & cache
uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: 3.8.13
cache: 'pip'
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3
- uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 # v4
- uses: actions/setup-python@b4fe97ecda6b7a5fcd2448cdbf6a8fc76b3bedb0
with:
python-version: 3.8.13
cache: pip
Expand Down

0 comments on commit d53c1e0

Please sign in to comment.