Skip to content

Commit 9da662e

Browse files
Update dependencies
1 parent 0f5495f commit 9da662e

16 files changed

Lines changed: 65 additions & 65 deletions

.github/workflows/abi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ jobs:
127127
128128
- name: Save regression diffs
129129
if: always() && steps.collectlogs.outputs.regression_diff == 'true'
130-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
130+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
131131
with:
132132
name: Regression diff ABI Breakage ${{ matrix.dir }} PG${{ matrix.pg }}
133133
path: regression.log
134134

135135
- name: Save postmaster.log
136136
if: always()
137-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
137+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
138138
with:
139139
name: PostgreSQL log ABI Breakage ${{ matrix.dir }} PG${{ matrix.pg }}
140140
path: postmaster.log

.github/workflows/apt-installcheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
125125
- name: Save the logs
126126
if: always()
127-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
127+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
128128
with:
129129
name: Installcheck logs ${{ matrix.runner }} ${{ matrix.image_friendly }} PG ${{ matrix.pg }}
130130
path: |

.github/workflows/claude-code-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Run Claude Code Review
2323
id: claude-review
24-
uses: anthropics/claude-code-action@6e2bd52842c65e914eba5c8badd17560bd26b5de # v1.0.89
24+
uses: anthropics/claude-code-action@4e5d8b13ca281a6d163cdb287d8917b216e00d6f # v1.0.103
2525
with:
2626
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
2727
prompt: |

.github/workflows/coccinelle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Save coccinelle.diff
3131
if: always()
32-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
32+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3333
with:
3434
name: coccinelle.diff
3535
path: coccinelle.diff

.github/workflows/libfuzzer.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# leading to a tainted cache
5050
- name: Cache PostgreSQL
5151
id: cache-postgresql
52-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
52+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5353
with:
5454
path: ~/${{ env.PG_SRC_DIR }}
5555
key: "postgresql-libfuzzer-${{ steps.get-date.outputs.date }}-${{ hashFiles('.github/**') }}"
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Upload config.log
7777
if: always()
78-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
78+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7979
with:
8080
name: config.log for PostgreSQL
8181
path: ~/${{ env.PG_SRC_DIR }}/config.log
@@ -104,7 +104,7 @@ jobs:
104104
run: 7z a install.7z $HOME/$PG_INSTALL_DIR
105105

106106
- name: Save the installation directory
107-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
107+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
108108
with:
109109
name: fuzzing-install-dir
110110
path: install.7z
@@ -182,7 +182,7 @@ jobs:
182182
183183
- name: Restore the cached fuzzing corpus (bulk)
184184
id: restore-corpus-cache-bulk
185-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
185+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
186186
with:
187187
path: db/corpus-bulk
188188
key: "${{ steps.config.outputs.cache_prefix }}-bulk"
@@ -191,7 +191,7 @@ jobs:
191191
# they don't overwrite each other. Now we are going to combine them.
192192
- name: Restore the cached fuzzing corpus (rowbyrow)
193193
id: restore-corpus-cache-rowbyrow
194-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
194+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
195195
with:
196196
path: db/corpus-rowbyrow
197197
key: "${{ steps.config.outputs.cache_prefix }}-rowbyrow"
@@ -293,22 +293,22 @@ jobs:
293293
294294
- name: Save PostgreSQL log
295295
if: always()
296-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
296+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
297297
with:
298298
name: PostgreSQL log for ${{ steps.config.outputs.name }}
299299
path: postgres.*
300300

301301
- name: Save fuzzer-generated crash cases
302302
if: always()
303-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
303+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
304304
with:
305305
name: Crash cases for ${{ steps.config.outputs.name }}
306306
path: db/crash-*
307307
if-no-files-found: ignore
308308

309309
- name: Save interesting cases
310310
if: always()
311-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
311+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
312312
with:
313313
name: Interesting cases for ${{ steps.config.outputs.name }}
314314
path: interesting/
@@ -336,7 +336,7 @@ jobs:
336336
337337
- name: Save fuzzer corpus
338338
if: always()
339-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
339+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
340340
with:
341341
path: db/corpus-${{ matrix.case.bulk && 'bulk' || 'rowbyrow' }}
342342
key: "${{ format('{0}-{1}-{2}-{3}',
@@ -365,7 +365,7 @@ jobs:
365365
366366
- name: Upload core dumps
367367
if: always() && steps.collectlogs.outputs.coredumps == 'true'
368-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
368+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
369369
with:
370370
name: Coredumps for ${{ steps.config.outputs.name }}
371371
path: coredumps

.github/workflows/linux-32bit-build-and-test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
needs: [config, check_paths]
4848
container:
49-
image: i386/debian:bookworm-slim@sha256:b45825d32fec7adab4c4ea5987b5154c5f6f24f98f904e2625f81f03fd54ca79
49+
image: i386/debian:bookworm-slim@sha256:8665d1820386db07d0e28d67c08785778ee9bbb5b563e9bc91ff214cbedeea79
5050
options: --privileged --ulimit core=-1:-1 --ulimit fsize=-1:-1
5151
env:
5252
PG_SRC_DIR: pgbuild
@@ -131,7 +131,7 @@ jobs:
131131
# leading to a tainted cache
132132
- name: Cache PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }}
133133
id: cache-postgresql
134-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
134+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
135135
with:
136136
path: ~/${{ env.PG_SRC_DIR }}
137137
key: "linux-32-bit-postgresql-${{ matrix.pg }}-${{ matrix.cc }}\
@@ -168,7 +168,7 @@ jobs:
168168
169169
- name: Upload config.log
170170
if: always() && steps.cache-postgresql.outputs.cache-hit != 'true'
171-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
171+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
172172
with:
173173
name: config.log linux-i386 PG${{ matrix.pg }}
174174
path: ~/${{ env.PG_SRC_DIR }}/config.log
@@ -189,7 +189,7 @@ jobs:
189189
190190
- name: Upload CMake Logs
191191
if: always()
192-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
192+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
193193
with:
194194
name: CMake Logs linux-i386 PG${{ matrix.pg }}
195195
path: |
@@ -236,7 +236,7 @@ jobs:
236236
237237
- name: Save regression diffs
238238
if: always() && steps.collectlogs.outputs.regression_diff == 'true'
239-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
239+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
240240
with:
241241
name: Regression diff linux-i386 PG${{ matrix.pg }}
242242
path: |
@@ -245,7 +245,7 @@ jobs:
245245
246246
- name: Save PostgreSQL log
247247
if: always()
248-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
248+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
249249
with:
250250
name: PostgreSQL log linux-i386 PG${{ matrix.pg }}
251251
path: postmaster.*
@@ -287,21 +287,21 @@ jobs:
287287
288288
- name: Coredumps
289289
if: always() && steps.coredumps.outputs.coredumps == 'true'
290-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
290+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
291291
with:
292292
name: Coredumps linux-i386 PG${{ matrix.pg }}
293293
path: coredumps
294294

295295
- name: Save stacktraces
296296
if: always() && steps.coredumps.outputs.coredumps == 'true'
297-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
297+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
298298
with:
299299
name: Stacktraces linux-i386 PG${{ matrix.pg }}
300300
path: stacktrace.log
301301

302302
- name: Save TAP test logs
303303
if: always()
304-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
304+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
305305
with:
306306
name: TAP test logs ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
307307
path: |

.github/workflows/linux-build-and-test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- name: Cache PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }}
131131
id: cache-postgresql
132132
if: matrix.snapshot != 'snapshot'
133-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
133+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
134134
with:
135135
path: ~/${{ env.PG_SRC_DIR }}
136136
key: "${{ matrix.os }}-postgresql-${{ matrix.pg }}-${{ matrix.cc }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('.github/**') }}${{ env.CACHE_SUFFIX }}"
@@ -166,7 +166,7 @@ jobs:
166166
167167
- name: Upload config.log
168168
if: always() && steps.cache-postgresql.outputs.cache-hit != 'true'
169-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
169+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
170170
with:
171171
name: config.log for PostgreSQL ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
172172
path: ~/${{ env.PG_SRC_DIR }}/config.log
@@ -197,7 +197,7 @@ jobs:
197197
198198
- name: Upload CMake Logs
199199
if: always()
200-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
200+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
201201
with:
202202
name: CMake Logs ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
203203
path: |
@@ -235,7 +235,7 @@ jobs:
235235

236236
- name: Save LCOV coverage report
237237
if: matrix.coverage
238-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
238+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
239239
with:
240240
name: LCOV coverage report ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
241241
path: ./build/coverage/lcov-report
@@ -261,7 +261,7 @@ jobs:
261261
262262
- name: Save regression diffs
263263
if: always() && steps.collectlogs.outputs.regression_diff == 'true'
264-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
264+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
265265
with:
266266
name: Regression diff ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
267267
path: |
@@ -270,7 +270,7 @@ jobs:
270270
271271
- name: Save PostgreSQL log
272272
if: always()
273-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
273+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
274274
with:
275275
name: PostgreSQL log ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
276276
path: postmaster.*
@@ -306,21 +306,21 @@ jobs:
306306
307307
- name: Coredumps
308308
if: always() && steps.collectlogs.outputs.coredumps == 'true'
309-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
309+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
310310
with:
311311
name: Coredumps ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
312312
path: coredumps
313313

314314
- name: Save stacktraces
315315
if: always() && steps.collectlogs.outputs.coredumps == 'true'
316-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
316+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
317317
with:
318318
name: Stacktraces ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
319319
path: stacktrace.log
320320

321321
- name: Save TAP test logs
322322
if: always()
323-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
323+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
324324
with:
325325
name: TAP test logs ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
326326
path: |

.github/workflows/llm-fuzzer.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
# leading to a tainted cache
107107
- name: Restore PostgreSQL ${{ needs.config.outputs.pg_latest }} cache
108108
id: cache-postgresql
109-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
109+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
110110
with:
111111
path: ~/${{ env.PG_SRC_DIR }}
112112
key: "$llm-fuzzer-postgresql-${{ needs.config.outputs.pg_latest }}-${{ env.CC }}\
@@ -137,14 +137,14 @@ jobs:
137137
138138
- name: Save PostgreSQL ${{ needs.config.outputs.pg_latest }} cache
139139
if: steps.cache-postgresql.outputs.cache-hit != 'true'
140-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
140+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
141141
with:
142142
path: ~/${{ env.PG_SRC_DIR }}
143143
key: ${{ steps.cache-postgresql.outputs.cache-primary-key }}
144144

145145
- name: Upload config.log
146146
if: always() && steps.cache-postgresql.outputs.cache-hit != 'true'
147-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
147+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
148148
with:
149149
name: config.log for PostgreSQL
150150
path: ~/${{ env.PG_SRC_DIR }}/config.log
@@ -245,7 +245,7 @@ jobs:
245245
246246
- name: Upload Claude log
247247
if: always()
248-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
248+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
249249
with:
250250
name: Claude execution log
251251
path: ${{ runner.temp }}/claude-execution-output.json
@@ -265,7 +265,7 @@ jobs:
265265
266266
- name: Restore clean PostgreSQL build
267267
if: always() && steps.repro.outputs.found == 'true'
268-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
268+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
269269
with:
270270
path: ~/${{ env.PG_SRC_DIR }}
271271
key: ${{ steps.cache-postgresql.outputs.cache-primary-key }}
@@ -361,7 +361,7 @@ jobs:
361361
362362
- name: Upload sanitizer logs
363363
if: always()
364-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
364+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
365365
with:
366366
name: sanitizer logs
367367
# The log_path sanitizer option means "Write logs to 'log_path.pid'".
@@ -370,21 +370,21 @@ jobs:
370370

371371
- name: Upload core dumps
372372
if: always() && steps.collectlogs.outputs.coredumps == 'true'
373-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
373+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
374374
with:
375375
name: Coredumps
376376
path: coredumps
377377

378378
- name: Save PostgreSQL log
379379
if: always()
380-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
380+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
381381
with:
382382
name: PostgreSQL log
383383
path: postmaster.*
384384

385385
- name: Upload llm-fuzzer-repro.sql
386386
if: always()
387-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
387+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
388388
with:
389389
name: llm-fuzzer-repro.sql
390390
path: ~/llm-fuzzer-repro.sql

.github/workflows/nightly_cloud_smoke_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
# Save the logs, so if there is a failure we'll have a better
107107
# chance to understand what went wrong.
108108
if: failure()
109-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
109+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
110110
with:
111111
name: Cloud Update test smoke
112112
path: /tmp/smoketest*/*

.github/workflows/pg_upgrade-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
127127
- name: Upload pg_upgrade logs
128128
if: always()
129-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
129+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
130130
with:
131131
name: pg_upgrade logs from ${{ matrix.pg_version_old }} to ${{ matrix.pg_version_new }}
132132
path: /tmp/pg_upgrade_artifacts.tgz

0 commit comments

Comments
 (0)