Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-python-dists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
persist-credentials: false # don"t persist git credentials on disk
ref: ${{ inputs.ref == null && null || inputs.ref }}
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ inputs.python-version }}
- name: Install build dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-django-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
with:
persist-credentials: false
- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ inputs.python-version }}
- name: Run pre-commit
Expand Down Expand Up @@ -144,12 +144,12 @@ jobs:
run: |
sudo apt-get install gdal-bin
- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ inputs.python-version }}
cache: pip
- name: Cache pip packages
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env:
cache-name: cache-pip-modules
with:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
run: |
pytest -ra -vvv --cov=. --cov-report=xml
- name: Store coverage.xml
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -199,7 +199,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Restore coverage.xml
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
# Resolves the effective directory (app-directory if set, else working-directory),
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
- name: Store coverage report
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -223,7 +223,7 @@ jobs:
# Resolves the effective directory (app-directory if set, else working-directory),
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
- name: Restore coverage report
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pnpm-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
# Resolves the effective directory (app-directory if set, else working-directory),
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
- name: Store coverage report
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -231,7 +231,7 @@ jobs:
# Resolves the effective directory (app-directory if set, else working-directory),
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
- name: Restore coverage report
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-python-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
persist-credentials: false

- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ inputs.python-version }}

Expand All @@ -87,12 +87,12 @@ jobs:
persist-credentials: false

- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ matrix.python_version }}

- name: Set up pip cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env:
cache-name: cache-pip-modules
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-uv-django-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
with:
persist-credentials: false
- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: ${{ inputs.python-version }}
- name: Run pre-commit
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
run: |
uv run pytest -ra -vvv --cov=. --cov-report=xml
- name: Store coverage.xml
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -188,7 +188,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Restore coverage.xml
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
Loading