Skip to content

Commit 970c97c

Browse files
Bump the github-actions group with 5 updates (#408)
1 parent f471aad commit 970c97c

11 files changed

+22
-22
lines changed

.github/workflows/_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
python-version: ${{ inputs.python-version }}
5151

5252
- name: Install uv
53-
uses: astral-sh/setup-uv@v6
53+
uses: astral-sh/setup-uv@v7
5454

5555
- name: Check git status (not Windows)
5656
if: runner.os != 'Windows'
@@ -102,7 +102,7 @@ jobs:
102102
}
103103
104104
- name: Store the distribution packages
105-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
105+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
106106
# upload artifacts with the oldest supported version
107107
if: runner.os == 'linux' && inputs.python-version == '3.11'
108108
with:

.github/workflows/_build_doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python-version: ${{ inputs.python-version }}
4040

4141
- name: Install uv
42-
uses: astral-sh/setup-uv@v6
42+
uses: astral-sh/setup-uv@v7
4343

4444
- name: Install dependencies
4545
run: |

.github/workflows/_codecov.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6262

6363
- name: Download the built wheel
64-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
64+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
6565
with:
6666
name: python-package-distributions
6767
path: dist/
@@ -72,7 +72,7 @@ jobs:
7272
python-version: ${{ inputs.python-version }}
7373

7474
- name: Install uv
75-
uses: astral-sh/setup-uv@v6
75+
uses: astral-sh/setup-uv@v7
7676

7777
- name: Install package
7878
run: |
@@ -94,7 +94,7 @@ jobs:
9494
run: pytest -vv -x --cov=kraken --cov-report=xml:coverage.xml --cov-report=term tests
9595

9696
- name: Export coverage report
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
with:
9999
name: coverage
100100
path: coverage.xml

.github/workflows/_codeql.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747

4848
- name: "Dependency Review"
4949
if: github.event_name == 'pull_request'
50-
uses: actions/dependency-review-action@56339e523c0409420f6c2c9a2f4292bbb3c07dd3 # v4.8.0
50+
uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
54+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
5555
with:
5656
languages: python
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
- name: Autobuild
67-
uses: github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
67+
uses: github/codeql-action/autobuild@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -77,6 +77,6 @@ jobs:
7777
# ./location_of_script_within_repo/buildscript.sh
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
80+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
8181
with:
8282
category: "/language:python"

.github/workflows/_pypi_publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uploads.github.com:443
4646
4747
- name: Download all the distributions
48-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
48+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4949
with:
5050
name: python-package-distributions
5151
path: dist/

.github/workflows/_pypi_test_publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uploads.github.com:443
4545
4646
- name: Download all the distributions
47-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
47+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4848
with:
4949
name: python-package-distributions
5050
path: dist/

.github/workflows/_test_futures_private.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6363

6464
- name: Download the built wheel
65-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
65+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
6666
with:
6767
name: python-package-distributions
6868
path: dist/
@@ -73,7 +73,7 @@ jobs:
7373
python-version: ${{ inputs.python-version }}
7474

7575
- name: Install uv
76-
uses: astral-sh/setup-uv@v6
76+
uses: astral-sh/setup-uv@v7
7777

7878
- name: Install package (Linux or macOS)
7979
if: runner.os != 'Windows'

.github/workflows/_test_futures_public.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4949

5050
- name: Download the built wheel
51-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
51+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
5252
with:
5353
name: python-package-distributions
5454
path: dist/
@@ -59,7 +59,7 @@ jobs:
5959
python-version: ${{ inputs.python-version }}
6060

6161
- name: Install uv
62-
uses: astral-sh/setup-uv@v6
62+
uses: astral-sh/setup-uv@v7
6363

6464
- name: Install package (Linux or macOS)
6565
if: runner.os != 'Windows'

.github/workflows/_test_spot_private.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6565

6666
- name: Download the built wheel
67-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
67+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
6868
with:
6969
name: python-package-distributions
7070
path: dist/
@@ -75,7 +75,7 @@ jobs:
7575
python-version: ${{ inputs.python-version }}
7676

7777
- name: Install uv
78-
uses: astral-sh/setup-uv@v6
78+
uses: astral-sh/setup-uv@v7
7979

8080
- name: Install package (Linux or macOS)
8181
if: runner.os != 'Windows'

.github/workflows/_test_spot_public.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5050

5151
- name: Download the built wheel
52-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
52+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
5353
with:
5454
name: python-package-distributions
5555
path: dist/
@@ -60,7 +60,7 @@ jobs:
6060
python-version: ${{ inputs.python-version }}
6161

6262
- name: Install uv
63-
uses: astral-sh/setup-uv@v6
63+
uses: astral-sh/setup-uv@v7
6464

6565
- name: Install package (Linux or macOS)
6666
if: runner.os != 'Windows'

0 commit comments

Comments
 (0)