Update Dependencies #521
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
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: | |
if: ${{ github.repository == 'kubernetes-sigs/provider-aws-test-infra' }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout provider-aws-test-infra | |
uses: actions/checkout@v4 | |
with: | |
path: src/sigs.k8s.io/provider-aws-test-infra | |
- name: Checkout Kubernetes | |
uses: actions/checkout@v4 | |
with: | |
repository: kubernetes/kubernetes | |
path: src/k8s.io/kubernetes | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21.5' | |
- 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 | |
working-directory: src/sigs.k8s.io/provider-aws-test-infra | |
- name: Create PR | |
if: ${{ steps.update_deps.outputs.changes != '' }} | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: 'Update Kubernetes dependencies to latest master' | |
commit-message: Update Kubernetes dependencies to latest master | |
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... | |
path: src/sigs.k8s.io/provider-aws-test-infra |