Skip to content

Commit 87c2dc1

Browse files
chore: update requirements.txt to address dependabot security alerts. (#1936) (#312)
Created by running: pip-compile requirements.in --generate-hashes --upgrade within synthtool/gcp/templates/java_library/.kokoro and synthtool/docker/owlbot/java/src/ Source-Link: googleapis/synthtool@853dbcd Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:084ad4c60551b075846bcb2405ec1c14b0d00ec1eb5503d4dd0d2a92cdc2d3e2 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 290787b commit 87c2dc1

File tree

6 files changed

+466
-323
lines changed

6 files changed

+466
-323
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Google LLC
1+
# Copyright 2024 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,4 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest: sha256:5df8b62e8da534f7604daef347698f6701e34b3f61713712a3384ac88fc32088
16+
digest: sha256:084ad4c60551b075846bcb2405ec1c14b0d00ec1eb5503d4dd0d2a92cdc2d3e2
17+
# created: 2024-03-15T14:33:32.257974519Z

.github/dependabot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ updates:
55
schedule:
66
interval: "daily"
77
# Disable version updates for Maven dependencies
8-
open-pull-requests-limit: 0
8+
# we use renovate-bot as well as shared-dependencies BOM to update maven dependencies.
9+
ignore:
10+
- dependency-name: "*"
911
- package-ecosystem: "pip"
1012
directory: "/"
1113
schedule:
1214
interval: "daily"
1315
# Disable version updates for pip dependencies
14-
open-pull-requests-limit: 0
16+
# If a security vulnerability comes in, we will be notified about
17+
# it via template in the synthtool repository.
18+
ignore:
19+
- dependency-name: "*"

.github/release-trigger.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
enabled: true
2+
multiScmName: java-pubsub-group-kafka-connector
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Renovate Bot Config Validation
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'renovate.json'
7+
8+
jobs:
9+
renovate_bot_config_validation:
10+
runs-on: ubuntu-22.04
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '20'
20+
21+
- name: Install Renovate and Config Validator
22+
run: |
23+
npm install -g npm@latest
24+
npm install --global renovate
25+
renovate-config-validator

0 commit comments

Comments
 (0)