Skip to content

Commit

Permalink
add dependabot hack to monitor for new protoc releases (#667)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <bcallaway@google.com>
  • Loading branch information
bobcallaway authored Jun 29, 2022
1 parent 559f903 commit 9ec9406
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/protoc-dependabot-hack.yml
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

0 comments on commit 9ec9406

Please sign in to comment.