-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto dependency bump #11557
Open
kokyhm
wants to merge
3
commits into
kubernetes-sigs:master
Choose a base branch
from
kokyhm:auto_dependency_bump
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,026
−0
Open
Auto dependency bump #11557
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Dependency check version | ||
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * 1' # Every Monday at 03:00 AM UTC | ||
workflow_dispatch: | ||
|
||
jobs: | ||
dependency-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
cache-dependency-path: '**/dependency_requirements.txt' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r scripts/dependency_requirements.txt | ||
|
||
- name: Run version check | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: python scripts/dependency_updater.py --ci-check | ||
|
||
- name: Trigger subsequent action for each component | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
version_diff=$(cat version_diff.json) | ||
count=0 # Initialize a counter | ||
for row in $(echo "${version_diff}" | jq -r 'to_entries[] | @base64'); do | ||
_jq() { | ||
echo ${row} | base64 --decode | jq -r ${1} | ||
} | ||
|
||
component=$(_jq '.key') | ||
current_version=$(_jq '.value.current_version') | ||
processed_latest_version=$(_jq '.value.processed_latest_version') | ||
|
||
echo "Triggering update for $component from $current_version to $processed_latest_version" | ||
|
||
gh workflow run dependency-pull-request.yml \ | ||
-f component=$component \ | ||
-f current_version=$current_version \ | ||
-f latest_version=$processed_latest_version \ | ||
|
||
count=$((count + 1)) | ||
|
||
# Stop after triggering 30 actions | ||
if [ "$count" -ge 30 ]; then | ||
echo "Reached the limit of 30 triggered actions." | ||
break | ||
fi | ||
done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Dependency create bump PR | ||
run-name: Create bump PR for ${{ inputs.component }} from ${{ inputs.current_version }} to ${{ inputs.latest_version }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
component: | ||
description: "Component to update" | ||
required: true | ||
current_version: | ||
description: "Current version of the component" | ||
required: true | ||
latest_version: | ||
description: "Latest version of the component" | ||
required: true | ||
|
||
jobs: | ||
create-pull-request: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
cache-dependency-path: '**/dependency_requirements.txt' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r scripts/dependency_requirements.txt | ||
|
||
- name: Run version check to create version_diff.json | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: python scripts/dependency_updater.py --ci-check --component ${{ github.event.inputs.component }} | ||
|
||
- name: Update component versions and checksums | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: python scripts/dependency_updater.py --component ${{ github.event.inputs.component }} | ||
|
||
- name: Generate PR body | ||
id: generate_pr_body | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
pr_body=$(python scripts/generate_pr_body.py --component ${{ github.event.inputs.component }}) | ||
|
||
# Escape any special characters (e.g., newlines) for the GITHUB_OUTPUT | ||
echo "pr_body<<EOF" >> $GITHUB_OUTPUT | ||
echo "$pr_body" >> $GITHUB_OUTPUT | ||
echo "EOF" >> $GITHUB_OUTPUT | ||
|
||
- name: Cleanup cache and version_diff.json | ||
run: rm -r cache/ version_diff.json | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
branch: "update-dependency-${{ github.event.inputs.component }}" | ||
commit-message: "Bump ${{ github.event.inputs.component }} from ${{ github.event.inputs.current_version }} to ${{ github.event.inputs.latest_version }}" | ||
title: "Bump ${{ github.event.inputs.component }} from ${{ github.event.inputs.current_version }} to ${{ github.event.inputs.latest_version }}" | ||
body: ${{ steps.generate_pr_body.outputs.pr_body }} | ||
labels: | | ||
dependencies | ||
release-note-none |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
ARCHITECTURES = ['arm', 'arm64', 'amd64', 'ppc64le'] | ||
OSES = ['darwin', 'linux', 'windows'] | ||
README_COMPONENTS = ['etcd', 'containerd', 'crio', 'calicoctl', 'krew', 'helm'] | ||
SHA256REGEX = r'(\b[a-f0-9]{64})\b' | ||
|
||
PATH_DOWNLOAD = 'roles/kubespray-defaults/defaults/main/download.yml' | ||
PATH_CHECKSUM = 'roles/kubespray-defaults/defaults/main/checksums.yml' | ||
PATH_MAIN = 'roles/kubespray-defaults/defaults/main/main.yml' | ||
PATH_README = 'README.md' | ||
PATH_VERSION_DIFF = 'version_diff.json' | ||
|
||
COMPONENT_INFO = { | ||
'calico_crds': { | ||
'owner': 'projectcalico', | ||
'repo': 'calico', | ||
'url_download': 'https://github.com/projectcalico/calico/archive/{version}.tar.gz', | ||
'placeholder_version': ['calico_version'], | ||
'placeholder_checksum' : 'calico_crds_archive_checksums', | ||
'checksum_structure' : 'simple', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'calicoctl': { | ||
'owner': 'projectcalico', | ||
'repo': 'calico', | ||
'url_download': 'https://github.com/projectcalico/calico/releases/download/{version}/SHA256SUMS', | ||
'placeholder_version': ['calico_version'], | ||
'placeholder_checksum' : 'calicoctl_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'linux-{arch}\b', | ||
}, | ||
'ciliumcli': { | ||
'owner': 'cilium', | ||
'repo': 'cilium-cli', | ||
'url_download': 'https://github.com/cilium/cilium-cli/releases/download/{version}/cilium-linux-{arch}.tar.gz.sha256sum', | ||
'placeholder_version': ['cilium_cli_version'], | ||
'placeholder_checksum' : 'ciliumcli_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'{arch}', | ||
}, | ||
'cni': { | ||
'owner': 'containernetworking', | ||
'repo': 'plugins', | ||
'url_download': 'https://github.com/containernetworking/plugins/releases/download/{version}/cni-plugins-linux-{arch}-{version}.tgz.sha256', | ||
'placeholder_version': ['cni_version'], | ||
'placeholder_checksum' : 'cni_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'{arch}', | ||
}, | ||
'containerd': { | ||
'owner': 'containerd', | ||
'repo': 'containerd', | ||
'url_download': 'https://github.com/containerd/containerd/releases/download/v{version}/containerd-{version}-linux-{arch}.tar.gz.sha256sum', | ||
'placeholder_version': ['containerd_version'], | ||
'placeholder_checksum' : 'containerd_archive_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'{arch}', | ||
}, | ||
'crictl': { | ||
'owner': 'kubernetes-sigs', | ||
'repo': 'cri-tools', | ||
'url_download': 'https://github.com/kubernetes-sigs/cri-tools/releases/download/{version}/crictl-{version}-linux-{arch}.tar.gz.sha256', | ||
'placeholder_version': ['crictl_supported_versions', 'kube_major_version'], | ||
'placeholder_checksum' : 'crictl_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'simple', # only sha | ||
}, | ||
'cri_dockerd': { | ||
'owner': 'Mirantis', | ||
'repo': 'cri-dockerd', | ||
'url_download': 'https://github.com/Mirantis/cri-dockerd/releases/download/v{version}/cri-dockerd-{version}.{arch}.tgz', | ||
'placeholder_version': ['cri_dockerd_version'], | ||
'placeholder_checksum' : 'cri_dockerd_archive_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'crio': { | ||
'owner': 'cri-o', | ||
'repo': 'cri-o', | ||
'url_download': 'https://storage.googleapis.com/cri-o/artifacts/cri-o.{arch}.{version}.tar.gz.sha256sum', | ||
'placeholder_version': ['crio_supported_versions', 'kube_major_version'], | ||
'placeholder_checksum' : 'crio_archive_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'{arch}', | ||
}, | ||
'crun': { | ||
'owner': 'containers', | ||
'repo': 'crun', | ||
'url_download': 'https://github.com/containers/crun/releases/download/{version}/crun-{version}-linux-{arch}', | ||
'placeholder_version': ['crun_version'], | ||
'placeholder_checksum' : 'crun_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'etcd': { | ||
'owner': 'etcd-io', | ||
'repo': 'etcd', | ||
'url_download': 'https://github.com/etcd-io/etcd/releases/download/{version}/SHA256SUMS', | ||
'placeholder_version': ['etcd_supported_versions', 'kube_major_version'], | ||
'placeholder_checksum' : 'etcd_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'linux-{arch}\.', | ||
}, | ||
'gvisor_containerd_shim': { | ||
'owner': 'google', | ||
'repo': 'gvisor', | ||
'url_download': 'https://storage.googleapis.com/gvisor/releases/release/{version}/{arch}/containerd-shim-runsc-v1', | ||
'placeholder_version': ['gvisor_version'], | ||
'placeholder_checksum' : 'gvisor_containerd_shim_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'gvisor_runsc': { | ||
'owner': 'google', | ||
'repo': 'gvisor', | ||
'url_download': 'https://storage.googleapis.com/gvisor/releases/release/{version}/{arch}/runsc', | ||
'placeholder_version': ['gvisor_version'], | ||
'placeholder_checksum' : 'gvisor_runsc_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'helm': { | ||
'owner': 'helm', | ||
'repo': 'helm', | ||
'url_download': 'https://get.helm.sh/helm-{version}-linux-{arch}.tar.gz.sha256sum', | ||
'placeholder_version': ['helm_version'], | ||
'placeholder_checksum' : 'helm_archive_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'{arch}', | ||
}, | ||
|
||
'kata_containers': { | ||
'owner': 'kata-containers', | ||
'repo': 'kata-containers', | ||
'url_download': 'https://github.com/kata-containers/kata-containers/releases/download/{version}/kata-static-{version}-{arch}.tar.xz', | ||
'placeholder_version': ['kata_containers_version'], | ||
'placeholder_checksum' : 'kata_containers_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'krew': { | ||
'owner': 'kubernetes-sigs', | ||
'repo': 'krew', | ||
'url_download': 'https://github.com/kubernetes-sigs/krew/releases/download/{version}/krew-{os_name}_{arch}.tar.gz.sha256', | ||
'placeholder_version': ['krew_version'], | ||
'placeholder_checksum' : 'krew_archive_checksums', | ||
'checksum_structure' : 'os_arch', | ||
'sha_regex' : r'simple', # only sha | ||
}, | ||
'kubeadm': { | ||
'owner': 'kubernetes', | ||
'repo': 'kubernetes', | ||
'url_download': 'https://dl.k8s.io/release/{version}/bin/linux/{arch}/kubeadm.sha256', | ||
'placeholder_version': ['kube_version'], | ||
'placeholder_checksum' : 'kubeadm_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'simple', # only sha | ||
}, | ||
'kubectl': { | ||
'owner': 'kubernetes', | ||
'repo': 'kubernetes', | ||
'url_download': 'https://dl.k8s.io/release/{version}/bin/linux/{arch}/kubectl.sha256', | ||
'placeholder_version': ['kube_version'], | ||
'placeholder_checksum' : 'kubectl_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'simple', # only sha | ||
}, | ||
'kubelet': { | ||
'owner': 'kubernetes', | ||
'repo': 'kubernetes', | ||
'url_download': 'https://dl.k8s.io/release/{version}/bin/linux/{arch}/kubelet.sha256', | ||
'placeholder_version': ['kube_version'], | ||
'placeholder_checksum' : 'kubelet_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'simple', # only sha | ||
}, | ||
'nerdctl': { | ||
'owner': 'containerd', | ||
'repo': 'nerdctl', | ||
'url_download': 'https://github.com/containerd/nerdctl/releases/download/v{version}/SHA256SUMS', | ||
'placeholder_version': ['nerdctl_version'], | ||
'placeholder_checksum' : 'nerdctl_archive_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'nerdctl-(?!full)[\w.-]+-linux-{arch}\.tar\.gz', | ||
}, | ||
'runc': { | ||
'owner': 'opencontainers', | ||
'repo': 'runc', | ||
'url_download': 'https://github.com/opencontainers/runc/releases/download/{version}/runc.sha256sum', | ||
'placeholder_version': ['runc_version'], | ||
'placeholder_checksum' : 'runc_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'\.{arch}\b', | ||
}, | ||
'skopeo': { | ||
'owner': 'containers', | ||
'repo': 'skopeo', | ||
'url_download': 'https://github.com/lework/skopeo-binary/releases/download/{version}/skopeo-linux-{arch}', | ||
'placeholder_version': ['skopeo_version'], | ||
'placeholder_checksum' : 'skopeo_binary_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'youki': { | ||
'owner': 'containers', | ||
'repo': 'youki', | ||
'url_download': 'https://github.com/containers/youki/releases/download/v{version}/youki-{version}-{arch}.tar.gz', | ||
'placeholder_version': ['youki_version'], | ||
'placeholder_checksum' : 'youki_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'', # binary | ||
}, | ||
'yq': { | ||
'owner': 'mikefarah', | ||
'repo': 'yq', | ||
'url_download': 'https://github.com/mikefarah/yq/releases/download/{version}/checksums-bsd', | ||
'placeholder_version': ['yq_version'], | ||
'placeholder_checksum' : 'yq_checksums', | ||
'checksum_structure' : 'arch', | ||
'sha_regex' : r'SHA256 \([^)]+linux_{arch}\)', | ||
}, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
certifi==2024.8.30 | ||
charset-normalizer==3.3.2 | ||
idna==3.9 | ||
requests==2.32.3 | ||
ruamel.yaml==0.18.6 | ||
ruamel.yaml.clib==0.2.8 | ||
urllib3==2.2.3 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather source this from the data (aka take the existing keys in the existing checksums)