From c524f31a672c647a937b706491770f7c8c739297 Mon Sep 17 00:00:00 2001 From: Fernando Alfaro Campos Date: Mon, 7 Oct 2024 09:48:52 -0400 Subject: [PATCH] Add go version update worklow --- .github/workflows/go-version.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/go-version.yaml diff --git a/.github/workflows/go-version.yaml b/.github/workflows/go-version.yaml new file mode 100644 index 0000000..1ba387e --- /dev/null +++ b/.github/workflows/go-version.yaml @@ -0,0 +1,22 @@ +# Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 + +# Reusable workflow to perform go version update on Golang based projects +name: Go Version Update + +on: + workflow_dispatch: + repository_dispatch: + types: [go-update-workflow] + +jobs: + # go version update + go-version-update: + uses: dell/common-github-actions/.github/workflows/go-version-workflow.yaml@main + name: Go Version Update + secrets: inherit