From 9ec940640e69520a3b4799089595b810e7633fc6 Mon Sep 17 00:00:00 2001 From: Bob Callaway Date: Wed, 29 Jun 2022 18:36:36 -0400 Subject: [PATCH] add dependabot hack to monitor for new protoc releases (#667) Signed-off-by: Bob Callaway --- .github/workflows/protoc-dependabot-hack.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/protoc-dependabot-hack.yml diff --git a/.github/workflows/protoc-dependabot-hack.yml b/.github/workflows/protoc-dependabot-hack.yml new file mode 100644 index 000000000..4106ab795 --- /dev/null +++ b/.github/workflows/protoc-dependabot-hack.yml @@ -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 \ No newline at end of file