Skip to content

Commit

Permalink
Bump the cloud-google-com-go group in /notifier/pubsub with 2 updates (
Browse files Browse the repository at this point in the history
…#405)

Bumps the cloud-google-com-go group in /notifier/pubsub with 2 updates:
[cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go)
and
[google.golang.org/api](https://github.com/googleapis/google-api-go-client).

Updates `cloud.google.com/go/compute/metadata` from 0.3.0 to 0.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-cloud-go/releases">cloud.google.com/go/compute/metadata's
releases</a>.</em></p>
<blockquote>
<h2>grafeas: v0.3.7</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/grafeas/v0.3.6...grafeas/v0.3.7">0.3.7</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>grafeas:</strong> Bump google.golang.org/[email protected] (<a
href="https://github.com/googleapis/google-cloud-go/commit/8fa9e398e512fd8533fd49060371e61b5725a85b">8fa9e39</a>)</li>
</ul>
<h2>parallelstore: v0.3.2</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/parallelstore/v0.3.1...parallelstore/v0.3.2">0.3.2</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>parallelstore:</strong> Bump google.golang.org/[email protected]
(<a
href="https://github.com/googleapis/google-cloud-go/commit/8fa9e398e512fd8533fd49060371e61b5725a85b">8fa9e39</a>)</li>
</ul>
<h2>errorreporting: v0.3.1</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/errorreporting/v0.3.0...errorreporting/v0.3.1">0.3.1</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>errorreporting:</strong> Add
internaloption.WithDefaultEndpointTemplate (<a
href="https://github.com/googleapis/google-cloud-go/commit/3b414084450a5764a0248756e95e13383a645f90">3b41408</a>)</li>
<li><strong>errorreporting:</strong> Bump x/net to v0.24.0 (<a
href="https://github.com/googleapis/google-cloud-go/commit/ba31ed5fda2c9664f2e1cf972469295e63deb5b4">ba31ed5</a>)</li>
<li><strong>errorreporting:</strong> Update protobuf dep to v1.33.0 (<a
href="https://github.com/googleapis/google-cloud-go/commit/30b038d8cac0b8cd5dd4761c87f3f298760dd33a">30b038d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md">cloud.google.com/go/compute/metadata's
changelog</a>.</em></p>
<blockquote>
<h2>v0.4.0</h2>
<ul>
<li>bigquery:
-<code>NewGCSReference</code> is now a function, not a method on
<code>Client</code>.
<ul>
<li><code>Table.LoaderFrom</code> now accepts a
<code>ReaderSource</code>, enabling
loading data into a table from a file or any
<code>io.Reader</code>.</li>
</ul>
<ul>
<li>
<p>Client.Table and Client.OpenTable have been removed.
Replace</p>
<pre lang="go"><code>client.OpenTable(&quot;project&quot;,
&quot;dataset&quot;, &quot;table&quot;)
</code></pre>
<p>with</p>
<pre lang="go"><code>client.DatasetInProject(&quot;project&quot;,
&quot;dataset&quot;).Table(&quot;table&quot;)
</code></pre>
</li>
<li>
<p>Client.CreateTable has been removed.
Replace</p>
<pre lang="go"><code>client.CreateTable(ctx, &quot;project&quot;,
&quot;dataset&quot;, &quot;table&quot;)
</code></pre>
<p>with</p>
<pre lang="go"><code>client.DatasetInProject(&quot;project&quot;,
&quot;dataset&quot;).Table(&quot;table&quot;).Create(ctx)
</code></pre>
</li>
<li>
<p>Dataset.ListTables have been replaced with Dataset.Tables.
Replace</p>
<pre lang="go"><code>tables, err := ds.ListTables(ctx)
</code></pre>
<p>with</p>
<pre lang="go"><code>it := ds.Tables(ctx)
for {
    table, err := it.Next()
    if err == iterator.Done {
        break
    }
    if err != nil {
        // TODO: Handle error.
    }
    // TODO: use table.
}
</code></pre>
</li>
<li>
<p>Client.Read has been replaced with Job.Read, Table.Read and
Query.Read.
Replace</p>
<pre lang="go"><code>it, err := client.Read(ctx, job)
</code></pre>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/8c2dc6124f184bbfc2f13949476cb98e12bda2bb"><code>8c2dc61</code></a>
logging: check for exact # of logs in tests</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/4791784d045a952c4de7eef608c8b0b9d66533a4"><code>4791784</code></a>
logadmin: use generated iterators</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/384ca5563740d2c07e9773b66107fdb7da979d59"><code>384ca55</code></a>
storage: use pointer receiver for ObjectAttrs</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/bd8a5e8b5d233a78bb4ef057f38eae438f8b6f55"><code>bd8a5e8</code></a>
datastore: add new key functions</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/09d95d938833fa0154e758c1485080cc63e58661"><code>09d95d9</code></a>
bigtable/bttest: add emulator support for DeleteCellsInFamily</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/7ee19e74f7fd11897ae3b7c4782d8205e810faa7"><code>7ee19e7</code></a>
bigquery: restore semantics of ForceZeroQuote</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/f7f94a2b9803b794a02e32e1339d3fe0df28a565"><code>f7f94a2</code></a>
bigquery: clean up implementation of LoadSource</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/f9c9ec4ec241ecb3f95058b959a0f294bc155a3e"><code>f9c9ec4</code></a>
storage: always send destination in compose request</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/67f57c54e27cf75ee0fbc2005b46c10b8b0f0051"><code>67f57c5</code></a>
storage: readObject method for tests</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/28994ff9b5baa92fe337dacaee126fcf80fefa3e"><code>28994ff</code></a>
bigtable: Use connection pool by default for data client.</li>
<li>Additional commits viewable in <a
href="https://github.com/googleapis/google-cloud-go/compare/v0.3.0...v0.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `google.golang.org/api` from 0.186.0 to 0.187.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's
releases</a>.</em></p>
<blockquote>
<h2>v0.187.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">0.187.0</a>
(2024-07-01)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528">1a28e06</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802">719f988</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de">7cd88da</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664">3ca2f84</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056">0a238f5</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed">6e061ce</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>gensupport:</strong> Wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c">a758bc1</a>)</li>
<li>Pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53">e051997</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">0.187.0</a>
(2024-07-01)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528">1a28e06</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802">719f988</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de">7cd88da</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664">3ca2f84</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056">0a238f5</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed">6e061ce</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>gensupport:</strong> Wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c">a758bc1</a>)</li>
<li>Pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53">e051997</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/b6c87f6266ea80ddbc13679929185c3a169b5871"><code>b6c87f6</code></a>
chore(main): release 0.187.0 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2656">#2656</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53"><code>e051997</code></a>
fix: pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/2ea4e07c4a3d85912a7919a0d514834e9d4721a0"><code>2ea4e07</code></a>
chore(all): update all to dc46fd2 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2662">#2662</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed"><code>6e061ce</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056"><code>0a238f5</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664"><code>3ca2f84</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de"><code>7cd88da</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c"><code>a758bc1</code></a>
fix(gensupport): wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802"><code>719f988</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528"><code>1a28e06</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)</li>
<li>See full diff in <a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ktong <[email protected]>
  • Loading branch information
dependabot[bot] and ktong authored Jul 8, 2024
1 parent 99815f0 commit b149c9a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions notifier/pubsub/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ module github.com/nil-go/konf/notifier/pubsub
go 1.21

require (
cloud.google.com/go/compute/metadata v0.3.0
cloud.google.com/go/compute/metadata v0.4.0
cloud.google.com/go/pubsub v1.40.0
github.com/google/uuid v1.6.0
google.golang.org/api v0.186.0
google.golang.org/api v0.187.0
google.golang.org/grpc v1.65.0
)

require (
cloud.google.com/go v0.115.0 // indirect
cloud.google.com/go/auth v0.6.0 // indirect
cloud.google.com/go/auth v0.6.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/iam v1.1.8 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
Expand All @@ -39,8 +39,8 @@ require (
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect
google.golang.org/protobuf v1.34.2 // indirect
)
24 changes: 12 additions & 12 deletions notifier/pubsub/go.sum
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14=
cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU=
cloud.google.com/go/auth v0.6.0 h1:5x+d6b5zdezZ7gmLWD1m/xNjnaQ2YDhmIz/HH3doy1g=
cloud.google.com/go/auth v0.6.0/go.mod h1:b4acV+jLQDyjwm4OXHYjNvRi4jvGBzHWJRtJcy+2P4g=
cloud.google.com/go/auth v0.6.1 h1:T0Zw1XM5c1GlpN2HYr2s+m3vr1p2wy+8VN+Z1FKxW38=
cloud.google.com/go/auth v0.6.1/go.mod h1:eFHG7zDzbXHKmjJddFG/rBlcGp6t25SwRUiEQSlO4x4=
cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4=
cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q=
cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc=
cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k=
cloud.google.com/go/compute/metadata v0.4.0 h1:vHzJCWaM4g8XIcm8kopr3XmDA4Gy/lblD3EhhSux05c=
cloud.google.com/go/compute/metadata v0.4.0/go.mod h1:SIQh1Kkb4ZJ8zJ874fqVkslA29PRXuleyj6vOzlbK7M=
cloud.google.com/go/iam v1.1.8 h1:r7umDwhj+BQyz0ScZMp4QrGXjSTI3ZINnpgU2nlB/K0=
cloud.google.com/go/iam v1.1.8/go.mod h1:GvE6lyMmfxXauzNq8NbgJbeVQNspG+tcdL/W8QO1+zE=
cloud.google.com/go/kms v1.17.1 h1:5k0wXqkxL+YcXd4viQzTqCgzzVKKxzgrK+rCZJytEQs=
cloud.google.com/go/kms v1.17.1/go.mod h1:DCMnCF/apA6fZk5Cj4XsD979OyHAqFasPuA5Sd0kGlQ=
cloud.google.com/go/kms v1.18.0 h1:pqNdaVmZJFP+i8OVLocjfpdTWETTYa20FWOegSCdrRo=
cloud.google.com/go/kms v1.18.0/go.mod h1:DyRBeWD/pYBMeyiaXFa/DGNyxMDL3TslIKb8o/JkLkw=
cloud.google.com/go/longrunning v0.5.7 h1:WLbHekDbjK1fVFD3ibpFFVoyizlLRl73I7YKuAKilhU=
cloud.google.com/go/longrunning v0.5.7/go.mod h1:8GClkudohy1Fxm3owmBGid8W0pSgodEMwEAztp38Xng=
cloud.google.com/go/pubsub v1.40.0 h1:0LdP+zj5XaPAGtWr2V6r88VXJlmtaB/+fde1q3TU8M0=
Expand Down Expand Up @@ -135,19 +135,19 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/api v0.186.0 h1:n2OPp+PPXX0Axh4GuSsL5QL8xQCTb2oDwyzPnQvqUug=
google.golang.org/api v0.186.0/go.mod h1:hvRbBmgoje49RV3xqVXrmP6w93n6ehGgIVPYrGtBFFc=
google.golang.org/api v0.187.0 h1:Mxs7VATVC2v7CY+7Xwm4ndkX71hpElcvx0D1Ji/p1eo=
google.golang.org/api v0.187.0/go.mod h1:KIHlTc4x7N7gKKuVsdmfBXN13yEEWXWFURWY6SBp2gk=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4 h1:CUiCqkPw1nNrNQzCCG4WA65m0nAmQiwXHpub3dNyruU=
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4/go.mod h1:EvuUDCulqGgV80RvP1BHuom+smhX4qtlhnNatHuroGQ=
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d h1:PksQg4dV6Sem3/HkBX+Ltq8T0ke0PKIRBNBatoDTVls=
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:s7iA721uChleev562UJO2OYB0PPT9CMFjV+Ce7VJH5M=
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 h1:MuYw1wJzT+ZkybKfaOXKp5hJiZDn2iHaXRw0mRYdHSc=
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4/go.mod h1:px9SlOOZBg1wM1zdnr8jEL4CNGUBZ+ZKYtNPApNQc4c=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 h1:Di6ANFilr+S60a4S61ZM00vLdw0IrQOSMS2/6mrnOU0=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d h1:k3zyW3BYYR30e8v3x0bTDdE9vpYFjZHK+HcyqkrppWk=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
Expand Down
2 changes: 1 addition & 1 deletion notifier/pubsub/notifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (n *Notifier) Start(ctx context.Context) error { //nolint:cyclop,funlen
project := n.project
if project == "" {
var err error
if project, err = metadata.ProjectID(); err != nil {
if project, err = metadata.ProjectIDWithContext(ctx); err != nil {
return fmt.Errorf("get GCP project ID: %w", err)
}
}
Expand Down

0 comments on commit b149c9a

Please sign in to comment.