Skip to content

Commit 859da97

Browse files
chore: ensure we are upgrading image to avoid vulnerabilities
ensure we are upgrading to the latest version of packages to avoid vunerabilities Source-Link: googleapis/synthtool@b5c0ed4 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest@sha256:2d9cc5ba06665c588e4d6accba03321d1314358ebb68dd0a7515ff28ada937ff
1 parent 44986cd commit 859da97

24 files changed

+136
-34
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
16-
digest: sha256:a5af6af827a9fffba373151e1453b0498da288024cdd16477900dd42857a42e0
17-
# created: 2024-09-20T20:26:11.126243246Z
16+
digest: sha256:2d9cc5ba06665c588e4d6accba03321d1314358ebb68dd0a7515ff28ada937ff
17+
# created: 2024-10-04T17:39:56.481250506Z

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ body:
2424
e.js"
2525
required: true
2626
- label: "Check our Troubleshooting guide:
27-
https://googlecloudplatform.github.io/google-cloud-node/#/docs/guid\
28-
es/troubleshooting"
27+
https://github.com/googleapis/google-cloud-node/blob/main/docs/trou\
28+
bleshooting.md"
2929
required: true
3030
- label: "Check our FAQ:
31-
https://googlecloudplatform.github.io/google-cloud-node/#/docs/guid\
32-
es/faq"
31+
https://github.com/googleapis/google-cloud-node/blob/main/docs/faq.\
32+
md"
3333
required: true
3434
- label: "Check our libraries HOW-TO:
3535
https://github.com/googleapis/gax-nodejs/blob/main/client-libraries\
@@ -55,9 +55,9 @@ body:
5555
behavior you are experiencing. If the behavior is the same, it means
5656
that you are likely experiencing a bug with the API itself. In that
5757
case, please submit an issue to the API team, either by submitting an
58-
issue in its issue tracker https://cloud.google.com/support/docs/issue-trackers, or by
58+
issue in its issue tracker (https://cloud.google.com/support/docs/issue-trackers), or by
5959
submitting an issue in its linked tracker in the .repo-metadata.json
60-
file https://b.corp.google.com/savedsearches/559654
60+
file https://b.corp.google.com/savedsearches/559654
6161
validations:
6262
required: true
6363
- type: input
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
22
name: Process Request
3-
about: Submit a process request to the library. Process requests are any requests related to library infrastructure, including CI/CD, publishing, releasing, etc. This issue template should primarily used by internal members.
4-
5-
---
3+
about: Submit a process request to the library. Process requests are any requests related to library infrastructure, for example CI/CD, publishing, releasing, broken links.
4+
---

.github/scripts/close-invalid-link.cjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,12 @@ module.exports = async ({github, context}) => {
4040
const isBugTemplate = issue.data.body.includes('Link to the code that reproduces this issue');
4141

4242
if (isBugTemplate) {
43+
console.log(`Issue ${number} is a bug template`)
4344
try {
44-
const link = issue.data.body.split('\n')[18].match(/(https?:\/\/g?i?s?t?\.?github.com\/.*)/);
45+
const link = issue.data.body.split('\n')[18].match(/(https?:\/\/(gist\.)?github.com\/.*)/)[0];
46+
console.log(`Issue ${number} contains this link: ${link}`)
4547
const isValidLink = (await fetch(link)).ok;
48+
console.log(`Issue ${number} has a ${isValidLink ? 'valid' : 'invalid'} link`)
4649
if (!isValidLink) {
4750
await closeIssue(github, owner, repo, number);
4851
}

.github/workflows/ci.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [14, 16, 18, 20]
12+
node: [14, 16, 18}]
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
1717
node-version: ${{ matrix.node }}
1818
- run: node --version
@@ -29,30 +29,30 @@ jobs:
2929
windows:
3030
runs-on: windows-latest
3131
steps:
32-
- uses: actions/checkout@v3
33-
- uses: actions/setup-node@v3
32+
- uses: actions/checkout@v4
33+
- uses: actions/setup-node@v4
3434
with:
35-
node-version: 14
35+
node-version: 18
3636
- run: npm install --engine-strict
3737
- run: npm test
3838
env:
3939
MOCHA_THROW_DEPRECATION: false
4040
lint:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v3
44-
- uses: actions/setup-node@v3
43+
- uses: actions/checkout@v4
44+
- uses: actions/setup-node@v4
4545
with:
46-
node-version: 14
46+
node-version: 18
4747
- run: npm install
4848
- run: npm run lint
4949
docs:
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v3
53-
- uses: actions/setup-node@v3
52+
- uses: actions/checkout@v4
53+
- uses: actions/setup-node@v4
5454
with:
55-
node-version: 14
55+
node-version: 18
5656
- run: npm install
5757
- run: npm run docs
5858
- uses: JustinBeckwith/linkinator-action@v1

.kokoro/common.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node18/common.cfg

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node18/lint.cfg

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node18/samples-test.cfg

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node18/system-test.cfg

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/continuous/node18/test.cfg

Whitespace-only changes.

.kokoro/presubmit/node18/common.cfg

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/presubmit/node18/samples-test.cfg

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/presubmit/node18/system-test.cfg

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/presubmit/node18/test.cfg

Whitespace-only changes.

.kokoro/release/docs-devsite.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/docs.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/docs.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/release/publish.cfg

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/samples-test.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/system-test.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/test.bat

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/test.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.kokoro/trampoline_v2.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)