-
Notifications
You must be signed in to change notification settings - Fork 31
47 lines (40 loc) · 1.2 KB
/
update-deps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: 'Update Dependencies'
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * *'
env:
GOPROXY: https://proxy.golang.org
permissions:
contents: write
pull-requests: write
jobs:
update-deps:
runs-on: ubuntu-22.04
steps:
- name: Checkout hydrophone
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.2'
- name: Update Dependencies
id: update_deps
run: |
hack/bump-k8s.sh
echo 'changes<<EOF' >> $GITHUB_OUTPUT
git status --porcelain >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Create PR
if: ${{ steps.update_deps.outputs.changes != '' }}
uses: peter-evans/create-pull-request@v5
with:
title: 'Update to latest Kubernetes dependencies'
commit-message: Update to latest Kubernetes dependencies
committer: github-actions <[email protected]>
author: github-actions <[email protected]>
branch: dependencies/update
base: main
delete-branch: true
labels: ok-to-test
body: |
Updating go.mod with latest Kubernetes related dependencies...