Skip to content

Commit e4aa9b2

Browse files
chore(deps): pin dependencies (#2855)
Signed-off-by: oep-renovate[bot] <212772560+oep-renovate[bot]@users.noreply.github.com> Co-authored-by: oep-renovate[bot] <212772560+oep-renovate[bot]@users.noreply.github.com>
1 parent 068181a commit e4aa9b2

21 files changed

+61
-61
lines changed

.github/actions/code-quality/pre-commit/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ runs:
6969
steps:
7070
# Set up Python environment with caching
7171
- name: Set up Python
72-
uses: actions/setup-python@v5
72+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
7373
with:
7474
python-version: ${{ inputs.python-version }}
7575
cache: pip # Enable pip caching
7676
cache-dependency-path: .pre-commit-config.yaml
7777

7878
# Set up Node.js for JavaScript-related hooks
7979
- name: Set up Node.js
80-
uses: actions/setup-node@v4
80+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
8181
with:
8282
node-version: ${{ inputs.node-version }}
8383

@@ -92,7 +92,7 @@ runs:
9292
- name: Cache pre-commit hooks
9393
if: inputs.cache == 'true'
9494
id: pre-commit-cache
95-
uses: actions/cache@v3
95+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
9696
with:
9797
path: ~/.cache/pre-commit
9898
# Cache key includes Python and Node versions to ensure correct environment

.github/actions/pytest/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ runs:
9494
steps:
9595
# Set up Python with pip caching
9696
- name: Set up Python environment
97-
uses: actions/setup-python@v5
97+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
9898
with:
9999
python-version: ${{ inputs.python-version }}
100100
cache: ${{ inputs.enable-cache == 'true' && 'pip' || '' }}
@@ -186,7 +186,7 @@ runs:
186186
187187
- name: Upload test results
188188
if: always() && steps.test-execution.outcome == 'failure'
189-
uses: actions/upload-artifact@v4
189+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
190190
with:
191191
name: pytest-results-${{ inputs.test-type }}
192192
path: pytest_output.log

.github/actions/security/bandit/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ runs:
8888
using: composite
8989
steps:
9090
- name: Set up Python
91-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
91+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
9292
with:
9393
python-version: "3.10"
9494

@@ -101,7 +101,7 @@ runs:
101101
- name: Get changed files
102102
if: inputs.scan-scope == 'changed'
103103
id: changed-files
104-
uses: tj-actions/changed-files@823fcebdb31bb35fdf2229d9f769b400309430d0 # v46.0.3
104+
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
105105
with:
106106
files: |
107107
**/*.py
@@ -163,13 +163,13 @@ runs:
163163
# Upload results after full scope analysis
164164
- name: Upload reports
165165
if: hashFiles('bandit-report.*') != '' # if any report is available
166-
uses: actions/upload-artifact@v4
166+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
167167
with:
168168
name: bandit-results
169169
path: bandit-report.*
170170
retention-days: 7
171171
- name: Upload sarif
172172
if: hashFiles('bandit-report.sarif') != '' # if SARIF is available, upload it
173-
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.8
173+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
174174
with:
175175
sarif_file: bandit-report.sarif

.github/actions/security/clamav/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ runs:
168168
# Upload results
169169
- name: Upload reports
170170
if: hashFiles('security-results/clamav*') != '' # if any report is available
171-
uses: actions/upload-artifact@v4
171+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
172172
with:
173173
name: clamav-results
174174
path: security-results/clamav

.github/actions/security/semgrep/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ runs:
9191
- name: Get changed files
9292
if: inputs.scan-scope == 'changed'
9393
id: changed-files
94-
uses: tj-actions/changed-files@823fcebdb31bb35fdf2229d9f769b400309430d0 # v46.0.3
94+
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
9595
with:
9696
files: |
9797
**/*.*
@@ -170,13 +170,13 @@ runs:
170170
# Upload results after full scope analysis
171171
- name: Upload reports
172172
if: hashFiles('security-results/semgrep/*') != '' # if any report is available
173-
uses: actions/upload-artifact@v4
173+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
174174
with:
175175
name: semgrep-results
176176
path: security-results/semgrep
177177
retention-days: 7
178178
- name: Upload sarif
179179
if: hashFiles('security-results/semgrep/semgrep-results.sarif') != '' # if SARIF is available, upload it
180-
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.8
180+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
181181
with:
182182
sarif_file: security-results/semgrep/semgrep-results.sarif

.github/actions/security/trivy/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ runs:
111111
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
112112

113113
- name: Cache Trivy vulnerability database
114-
uses: actions/cache@v3
114+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
115115
with:
116116
path: ~/.cache/trivy
117117
key: trivy-db-${{ runner.os }}-${{ hashFiles('**/trivy-db/**') }}
@@ -220,13 +220,13 @@ runs:
220220
# Upload results after full scope analysis
221221
- name: Upload reports
222222
if: hashFiles('security-results/trivy/*') != '' # if any report is available
223-
uses: actions/upload-artifact@v4
223+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
224224
with:
225225
name: trivy-results
226226
path: security-results/trivy
227227
retention-days: 7
228228
- name: Upload sarif
229229
if: hashFiles('security-results/trivy/trivy-results.sarif') != '' # if SARIF is available, upload it
230-
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.8
230+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
231231
with:
232232
sarif_file: security-results/trivy/trivy-results.sarif

.github/actions/security/zizmor/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ runs:
6666
using: composite
6767
steps:
6868
- name: Install uv
69-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
69+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
7070
with:
7171
enable-cache: true
7272
activate-environment: true
@@ -76,7 +76,7 @@ runs:
7676
- name: Get changed files
7777
if: inputs.scan-scope == 'changed'
7878
id: changed-files
79-
uses: tj-actions/changed-files@823fcebdb31bb35fdf2229d9f769b400309430d0 # v46.0.3
79+
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
8080
with:
8181
files: .github/**
8282

@@ -137,13 +137,13 @@ runs:
137137
# Upload results after full scope analysis
138138
- name: Upload reports
139139
if: hashFiles('zizmor-report.*') != '' # if any report is available
140-
uses: actions/upload-artifact@v4
140+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
141141
with:
142142
name: zizmor-results
143143
path: zizmor-report.*
144144
retention-days: 7
145145
- name: Upload sarif
146146
if: hashFiles('zizmor-report.sarif') != '' # if SARIF is available, upload it
147-
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.8
147+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
148148
with:
149149
sarif_file: zizmor-report.sarif

.github/workflows/_reusable-artifact-builder.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ jobs:
7878
outputs:
7979
artifact-name: ${{ steps.set-artifact-name.outputs.name }}
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
8282
with:
8383
persist-credentials: false
84-
- uses: actions/setup-python@v5
84+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
8585
with:
8686
python-version: ${{ inputs.python-version }}
8787
- name: Build package
@@ -96,13 +96,13 @@ jobs:
9696
- name: Set artifact name
9797
id: set-artifact-name
9898
run: echo "name=dist-$(date +%s)" >> $GITHUB_OUTPUT
99-
- uses: actions/upload-artifact@v4
99+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
100100
with:
101101
name: ${{ steps.set-artifact-name.outputs.name }}
102102
path: dist/
103103
retention-days: 5
104104
- name: Cache pip dependencies
105-
uses: actions/cache@v4
105+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
106106
with:
107107
path: |
108108
~/.cache/pip
@@ -111,7 +111,7 @@ jobs:
111111
restore-keys: |
112112
${{ runner.os }}-pip-
113113
- name: Cache build artifacts
114-
uses: actions/cache@v4
114+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
115115
with:
116116
path: |
117117
dist/

.github/workflows/_reusable-code-quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
timeout-minutes: 5
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6666
with:
6767
fetch-depth: 0
6868
lfs: true

.github/workflows/_reusable-pr-title-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ jobs:
6060
timeout-minutes: 5
6161
steps:
6262
- name: Checkout repository
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6464
with:
6565
persist-credentials: false
6666

6767
- name: Set up Python
68-
uses: actions/setup-python@v5
68+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
6969
with:
7070
python-version: ${{ inputs.python-version }}
7171
cache: pip

0 commit comments

Comments
 (0)