Skip to content

Commit 1ffc7a7

Browse files
renovate[bot]svenklemm
authored andcommitted
Update dependencies
1 parent 35b093b commit 1ffc7a7

11 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/changelog-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: timescaledb-runner-arm64
2424
steps:
2525
- name: Setup Python
26-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
26+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
2727
with:
2828
python-version: '3.13'
2929

.github/workflows/code_style.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181

182182
- name: Restore PostgreSQL Cache
183183
id: restore-postgresql
184-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
184+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
185185
with:
186186
path: install
187187
key: ${{ steps.cache-key.outputs.key }}
@@ -201,7 +201,7 @@ jobs:
201201
202202
- name: Save PostgreSQL Cache
203203
if: steps.restore-postgresql.outputs.cache-matched-key == ''
204-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
204+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
205205
with:
206206
path: install
207207
key: ${{ steps.cache-key.outputs.key }}

.github/workflows/issue-handling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
4747
steps:
4848
- name: Post to Security Channel
49-
uses: slackapi/slack-github-action@45a88b9581bfab2566dc881e2cd66d334e621e2c # v3.0.3
49+
uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0
5050
with:
5151
channel-id: '${{ secrets.SLACK_CHANNEL_SECURITY }}'
5252
payload: |

.github/workflows/libfuzzer.yaml

Lines changed: 4 additions & 4 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
52+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5353
with:
5454
path: ~/${{ env.PG_SRC_DIR }}
5555
key: "postgresql-libfuzzer-${{ steps.get-date.outputs.date }}-${{ hashFiles('.github/**') }}"
@@ -183,7 +183,7 @@ jobs:
183183
184184
- name: Restore the cached fuzzing corpus (bulk)
185185
id: restore-corpus-cache-bulk
186-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
186+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
187187
with:
188188
path: db/corpus-bulk
189189
key: "${{ steps.config.outputs.cache_prefix }}-bulk"
@@ -192,7 +192,7 @@ jobs:
192192
# they don't overwrite each other. Now we are going to combine them.
193193
- name: Restore the cached fuzzing corpus (rowbyrow)
194194
id: restore-corpus-cache-rowbyrow
195-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
195+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
196196
with:
197197
path: db/corpus-rowbyrow
198198
key: "${{ steps.config.outputs.cache_prefix }}-rowbyrow"
@@ -346,7 +346,7 @@ jobs:
346346
347347
- name: Save fuzzer corpus
348348
if: always()
349-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
349+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
350350
with:
351351
path: db/corpus-${{ matrix.case.bulk && 'bulk' || 'rowbyrow' }}
352352
key: "${{ format('{0}-{1}-{2}-{3}',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
134+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
135135
with:
136136
path: ~/${{ env.PG_SRC_DIR }}
137137
key: "linux-32-bit-postgresql-${{ matrix.pg }}\

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Restore PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }} Cache
125125
id: restore-postgresql-cache
126126
if: matrix.snapshot != 'snapshot'
127-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
127+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
128128
with:
129129
path: |
130130
install
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: Save PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }} Cache
165165
if: matrix.snapshot != 'snapshot' && steps.restore-postgresql-cache.outputs.cache-hit != 'true'
166-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
166+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
167167
with:
168168
path: |
169169
install

.github/workflows/llm-fuzzer.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
# leading to a tainted cache
121121
- name: Restore PostgreSQL ${{ needs.config.outputs.pg_latest }} cache
122122
id: cache-postgresql
123-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
123+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
124124
with:
125125
path: ~/${{ env.PG_SRC_DIR }}
126126
key: "llm-fuzzer-postgresql-${{ needs.config.outputs.pg_latest }}-${{ env.CC }}\
@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: Save PostgreSQL ${{ needs.config.outputs.pg_latest }} cache
153153
if: steps.cache-postgresql.outputs.cache-hit != 'true'
154-
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
154+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
155155
with:
156156
path: ~/${{ env.PG_SRC_DIR }}
157157
key: ${{ steps.cache-postgresql.outputs.cache-primary-key }}
@@ -260,7 +260,7 @@ jobs:
260260
261261
- name: Restore clean PostgreSQL build
262262
if: steps.repro.outputs.found == 'true'
263-
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
263+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
264264
with:
265265
path: ~/${{ env.PG_SRC_DIR }}
266266
key: ${{ steps.cache-postgresql.outputs.cache-primary-key }}

.github/workflows/pgspot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141

4242
- name: Setup python 3.13
43-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
43+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
4444
with:
4545
python-version: '3.13'
4646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
# leading to a tainted cache
110110
- name: Cache PostgreSQL ${{ matrix.pg }}
111111
id: cache-postgresql
112-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
112+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
113113
with:
114114
path: ~/${{ env.PG_SRC_DIR }}
115115
key: "${{ matrix.os }}-${{ env.name }}-postgresql-${{ matrix.pg }}-${{ env.CC }}\

.github/workflows/tests-fail-on-old-code.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Cache PostgreSQL ${{ steps.pg.outputs.version }}
100100
if: steps.check.outputs.should_run == 'true'
101101
id: cache-postgresql
102-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
102+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
103103
with:
104104
path: ~/${{ env.PG_SRC_DIR }}
105105
key: "pg-${{ steps.pg.outputs.version }}-${{ runner.os }}-${{ runner.arch }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('.github/**') }}"

0 commit comments

Comments
 (0)