Skip to content

Commit 9b718c6

Browse files
dependabot[bot]tuomas777
authored andcommitted
deps: bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/cache](https://github.com/actions/cache), [actions/cache/save](https://github.com/actions/cache) and [actions/cache/restore](https://github.com/actions/cache). Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a309ff8...ece7cb0) Updates `actions/cache` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) Updates `actions/cache/save` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) Updates `actions/cache/restore` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache/save dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache/restore dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 47073a6 commit 9b718c6

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build-python-dists.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
persist-credentials: false # don"t persist git credentials on disk
5353
ref: ${{ inputs.ref == null && null || inputs.ref }}
5454
- name: Set up Python
55-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
55+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
5656
with:
5757
python-version: ${{ inputs.python-version }}
5858
- name: Install build dependencies

.github/workflows/ci-django-api.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
persist-credentials: false
8282
- name: Setup Python ${{ inputs.python-version }}
83-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
83+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
8484
with:
8585
python-version: ${{ inputs.python-version }}
8686
- name: Run pre-commit
@@ -144,12 +144,12 @@ jobs:
144144
run: |
145145
sudo apt-get install gdal-bin
146146
- name: Setup Python ${{ inputs.python-version }}
147-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
147+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
148148
with:
149149
python-version: ${{ inputs.python-version }}
150150
cache: pip
151151
- name: Cache pip packages
152-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
152+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
153153
env:
154154
cache-name: cache-pip-modules
155155
with:
@@ -178,7 +178,7 @@ jobs:
178178
run: |
179179
pytest -ra -vvv --cov=. --cov-report=xml
180180
- name: Store coverage.xml
181-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
181+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
182182
with:
183183
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
184184
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
@@ -199,7 +199,7 @@ jobs:
199199
fetch-depth: 0
200200
persist-credentials: false
201201
- name: Restore coverage.xml
202-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
202+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
203203
with:
204204
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
205205
key: cache-${{ github.run_id }}-${{ github.run_attempt }}

.github/workflows/ci-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
# Resolves the effective directory (app-directory if set, else working-directory),
202202
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
203203
- name: Store coverage report
204-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
204+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
205205
with:
206206
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
207207
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
@@ -223,7 +223,7 @@ jobs:
223223
# Resolves the effective directory (app-directory if set, else working-directory),
224224
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
225225
- name: Restore coverage report
226-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
226+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
227227
with:
228228
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
229229
key: cache-${{ github.run_id }}-${{ github.run_attempt }}

.github/workflows/ci-pnpm-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
# Resolves the effective directory (app-directory if set, else working-directory),
209209
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
210210
- name: Store coverage report
211-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
211+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
212212
with:
213213
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
214214
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
@@ -231,7 +231,7 @@ jobs:
231231
# Resolves the effective directory (app-directory if set, else working-directory),
232232
# then prefixes 'coverage' with '<dir>/' when running in a subdirectory.
233233
- name: Restore coverage report
234-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
234+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
235235
with:
236236
path: ${{ (inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) && format('{0}/', inputs.app-directory == '.' && inputs.working-directory || inputs.app-directory) || ''}}coverage
237237
key: cache-${{ github.run_id }}-${{ github.run_attempt }}

.github/workflows/ci-python-library.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
persist-credentials: false
6666

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

@@ -87,12 +87,12 @@ jobs:
8787
persist-credentials: false
8888

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

9494
- name: Set up pip cache
95-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
95+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9696
env:
9797
cache-name: cache-pip-modules
9898
with:

.github/workflows/ci-uv-django-api.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
persist-credentials: false
8282
- name: Setup Python ${{ inputs.python-version }}
83-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
83+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
8484
with:
8585
python-version: ${{ inputs.python-version }}
8686
- name: Run pre-commit
@@ -167,7 +167,7 @@ jobs:
167167
run: |
168168
uv run pytest -ra -vvv --cov=. --cov-report=xml
169169
- name: Store coverage.xml
170-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
170+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
171171
with:
172172
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
173173
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
@@ -188,7 +188,7 @@ jobs:
188188
fetch-depth: 0
189189
persist-credentials: false
190190
- name: Restore coverage.xml
191-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
191+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
192192
with:
193193
path: ${{ inputs.working-directory && format('{0}/', inputs.working-directory) || ''}}coverage.xml
194194
key: cache-${{ github.run_id }}-${{ github.run_attempt }}

0 commit comments

Comments
 (0)