-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dependabot hack to monitor for new protoc releases (#667)
Signed-off-by: Bob Callaway <bcallaway@google.com>
- Loading branch information
1 parent
559f903
commit 9ec9406
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
# This file will never actually run, and simply exists as a hack to trigger dependabot | ||
# to notify us if protobuf issues a new release that we should upgrade to | ||
name: Dependabot hack | ||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: | ||
- never-trigger-this-dependabot-hack-workflow | ||
|
||
jobs: | ||
|
||
dependabot_hack: | ||
name: Ensure dependabot version checks | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
|
||
# update the version in these places manually when Dependabot proposes a change to it here: | ||
# 1. the version in main.yml used to install protoc | ||
- uses: protocol-buffers/protobuf@v3.12.4 |