Skip to content

Commit 1c13558

Browse files
committed
Merge branch 'main' into develop-v12.0.0
2 parents 563c431 + b7348dc commit 1c13558

File tree

63 files changed

+3611
-830
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3611
-830
lines changed

.github/workflows/addlicense.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
permissions:
4040
contents: read
4141
steps:
42-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
42+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
4343

4444
- name: Fetch git tags
4545
run: |

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
BASE_SHA: ${{ github.event.pull_request.base.sha }}
3939

4040
steps:
41-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
41+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
4242
with:
4343
fetch-depth: 0
4444

45-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
45+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
4646
with:
4747
python-version: "${{ matrix.python }}"
4848

.github/workflows/build-ci-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: Docker Build ${{ matrix.platform }}
4444

4545
steps:
46-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
46+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
4747
with:
4848
persist-credentials: false
4949
fetch-depth: 0
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Generate Docker Metadata (Tags and Labels)
6262
id: meta
63-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # 5.9.0
63+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # 5.10.0
6464
with:
6565
images: ghcr.io/${{ steps.image-name.outputs.IMAGE_NAME }}
6666
flavor: |
@@ -97,7 +97,7 @@ jobs:
9797
touch "${{ runner.temp }}/digests/${digest#sha256:}"
9898
9999
- name: Upload Digest
100-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
100+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0
101101
with:
102102
name: digests-${{ matrix.cache_tag }}
103103
path: ${{ runner.temp }}/digests/*
@@ -114,7 +114,7 @@ jobs:
114114

115115
steps:
116116
- name: Download Digests
117-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # 6.0.0
117+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # 7.0.0
118118
with:
119119
path: ${{ runner.temp }}/digests
120120
pattern: digests-*
@@ -139,7 +139,7 @@ jobs:
139139
140140
- name: Generate Docker Metadata (Tags and Labels)
141141
id: meta
142-
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # 5.9.0
142+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # 5.10.0
143143
with:
144144
images: ghcr.io/${{ steps.image-name.outputs.IMAGE_NAME }}
145145
flavor: |

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ${{ matrix.os }}
7878

7979
steps:
80-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
80+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
8181
with:
8282
persist-credentials: false
8383
fetch-depth: 0
@@ -106,7 +106,7 @@ jobs:
106106
CIBW_TEST_SKIP: "*-win_arm64"
107107

108108
- name: Upload Artifacts
109-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
109+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0
110110
with:
111111
name: ${{ github.job }}-${{ matrix.wheel }}
112112
path: ./wheelhouse/*.whl
@@ -118,12 +118,12 @@ jobs:
118118
runs-on: ubuntu-24.04
119119

120120
steps:
121-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
121+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
122122
with:
123123
persist-credentials: false
124124
fetch-depth: 0
125125

126-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
126+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
127127
with:
128128
python-version: "3.13"
129129

@@ -143,7 +143,7 @@ jobs:
143143
openssl md5 -binary "dist/${tarball}" | xxd -p | tr -d '\n' > "dist/${md5_file}"
144144
145145
- name: Upload Artifacts
146-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
146+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0
147147
with:
148148
name: ${{ github.job }}-sdist
149149
path: |
@@ -175,7 +175,7 @@ jobs:
175175
environment: ${{ matrix.pypi-instance }}
176176

177177
steps:
178-
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # 6.0.0
178+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # 7.0.0
179179
with:
180180
path: ./dist/
181181
merge-multiple: true

.github/workflows/mega-linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
steps:
4646
# Git Checkout
4747
- name: Checkout Code
48-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 5.0.1
48+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # 6.0.1
4949
with:
5050
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
5151
fetch-depth: 0 # Required for pushing commits to PRs
5252

5353
# MegaLinter
5454
- name: MegaLinter
5555
id: ml
56-
uses: oxsecurity/megalinter/flavors/python@62c799d895af9bcbca5eacfebca29d527f125a57 # 9.1.0
56+
uses: oxsecurity/megalinter/flavors/python@55a59b24a441e0e1943080d4a512d827710d4a9d # 9.2.0
5757
env:
5858
# All available variables are described in documentation
5959
# https://megalinter.io/latest/configuration/
@@ -68,7 +68,7 @@ jobs:
6868
# Upload MegaLinter artifacts
6969
- name: Archive production artifacts
7070
if: success() || failure()
71-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
71+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # 6.0.0
7272
with:
7373
name: MegaLinter reports
7474
include-hidden-files: "true"

0 commit comments

Comments
 (0)