You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/update-debian-version.yml
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: "update-ubuntu-version"
1
+
name: "update-debian-version"
2
2
on:
3
3
workflow_dispatch:
4
4
schedule:
@@ -19,35 +19,35 @@ jobs:
19
19
with:
20
20
go-version: ${{env.GO_VERSION}}
21
21
- name: Bump Ubuntu version
22
-
id: bumpUbuntu
22
+
id: bumpBaseOsImage
23
23
run: |
24
24
echo "OLD_VERSION=$(DEP=ubuntu make get-dependency-version)" >> "$GITHUB_OUTPUT"
25
-
make update-ubuntu-version
25
+
make update-debian-version
26
26
echo "NEW_VERSION=$(DEP=ubuntu make get-dependency-version)" >> "$GITHUB_OUTPUT"
27
27
# The following is to support multiline with GITHUB_OUTPUT, see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
28
28
echo "changes<<EOF" >> "$GITHUB_OUTPUT"
29
29
echo "$(git status --porcelain)" >> "$GITHUB_OUTPUT"
commit-message: 'Kicbase: Bump ubuntu:jammy from ${{ steps.bumpUbuntu.outputs.OLD_VERSION }} to ${{ steps.bumpUbuntu.outputs.NEW_VERSION }}'
37
+
commit-message: 'Kicbase: Bump debian:bookworm from ${{ steps.bumpBaseOsImage.outputs.OLD_VERSION }} to ${{ steps.bumpBaseOsImage.outputs.NEW_VERSION }}'
38
38
committer: minikube-bot <minikube-bot@google.com>
39
39
author: minikube-bot <minikube-bot@google.com>
40
-
branch: auto_bump_ubuntu_version
40
+
branch: auto_bump_debian_version
41
41
push-to-fork: minikube-bot/minikube
42
42
base: master
43
43
delete-branch: true
44
-
title: 'Kicbase: Bump ubuntu:jammy from ${{ steps.bumpUbuntu.outputs.OLD_VERSION }} to ${{ steps.bumpUbuntu.outputs.NEW_VERSION }}'
44
+
title: 'Kicbase: Bump debian:bookworm from ${{ steps.bumpBaseOsImage.outputs.OLD_VERSION }} to ${{ steps.bumpBaseOsImage.outputs.NEW_VERSION }}'
45
45
body: |
46
-
The ubuntu:jammy image released a new version
46
+
The debian:bookworm image released a new version
47
47
48
-
This PR was auto-generated by `make update-ubuntu-version` using [update-ubuntu-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-ubuntu-version.yml) CI Workflow.
48
+
This PR was auto-generated by `make update-debian-version` using [update-debian-version.yml](https://github.com/kubernetes/minikube/tree/master/.github/workflows/update-debian-version.yml) CI Workflow.
0 commit comments