Skip to content

Commit 15d3d44

Browse files
chore(deps): update github actions
Signed-off-by: oep-renovate[bot] <212772560+oep-renovate[bot]@users.noreply.github.com>
1 parent 74ade81 commit 15d3d44

21 files changed

+59
-59
lines changed

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

Lines changed: 2 additions & 2 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@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
72+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
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@a0853c24544627f65ddf259abe73b1d18a591444 # v5
80+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
8181
with:
8282
node-version: ${{ inputs.node-version }}
8383

.github/actions/pytest/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ runs:
9494
steps:
9595
# Set up Python with pip caching
9696
- name: Set up Python environment
97-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
97+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
9898
with:
9999
python-version: ${{ inputs.python-version }}
100100
cache: ${{ inputs.enable-cache == 'true' && 'pip' || '' }}
101101
cache-dependency-path: ${{ inputs.enable-cache == 'true' && 'pyproject.toml' || '' }}
102102

103103
- name: Set up uv
104-
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
104+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
105105

106106
# Create and configure virtual environment
107107
- name: Configure virtual environment
@@ -189,7 +189,7 @@ runs:
189189
190190
- name: Upload test results
191191
if: always() && steps.test-execution.outcome == 'failure'
192-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
192+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
193193
with:
194194
name: pytest-results-${{ inputs.test-type }}
195195
path: pytest_output.log

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

Lines changed: 3 additions & 3 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@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
91+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
9292
with:
9393
python-version: "3.10"
9494

@@ -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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
166+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
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@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
173+
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
171+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
172172
with:
173173
name: clamav-results
174174
path: security-results/clamav

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
223+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
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@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
230+
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
231231
with:
232232
sarif_file: security-results/trivy/trivy-results.sarif

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

Lines changed: 3 additions & 3 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@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
69+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
7070
with:
7171
enable-cache: true
7272
activate-environment: true
@@ -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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
140+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
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@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.30.6
147+
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
148148
with:
149149
sarif_file: zizmor-report.sarif

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

Lines changed: 3 additions & 3 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
81+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
8282
with:
8383
persist-credentials: false
84-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
84+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
8585
with:
8686
python-version: ${{ inputs.python-version }}
8787
- name: Build package
@@ -96,7 +96,7 @@ 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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
99+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
100100
with:
101101
name: ${{ steps.set-artifact-name.outputs.name }}
102102
path: 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
65+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
63+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
6464
with:
6565
persist-credentials: false
6666

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

.github/workflows/_reusable-production-release-process.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- name: Download artifacts
95-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
95+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
9696
with:
9797
name: ${{ inputs.artifact-name }}
9898
path: dist
9999

100100
- name: Upload for production release
101-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
101+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
102102
with:
103103
name: production-release-artifacts
104104
path: dist/

0 commit comments

Comments
 (0)