-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore: update misc dependencies #219
Open
RTann
wants to merge
1
commit into
main
Choose a base branch
from
update-deps-2024
base: main
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.
Open
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
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
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
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 |
---|---|---|
|
@@ -58,11 +58,11 @@ ENV PATH=$PATH:/usr/pgsql-14/bin | |
|
||
# Install bats | ||
RUN set -ex \ | ||
&& npm install -g bats@1.10.0 [email protected] [email protected] tap-junit \ | ||
&& npm install -g bats@1.11.0 [email protected] [email protected] tap-junit \ | ||
&& bats -v | ||
|
||
# Install docker binary | ||
ARG DOCKER_VERSION=20.10.6 | ||
# Install docker 27.3.1 | ||
ARG DOCKER_VERSION=27.3.1 | ||
RUN set -ex \ | ||
&& DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" \ | ||
&& echo Docker URL: $DOCKER_URL \ | ||
|
@@ -77,24 +77,24 @@ RUN set -ex \ | |
# Symlink python to python3 | ||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
|
||
# oc | ||
# Install oc 4.15.0-0.okd-2024-02-23-163410 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O oc.tgz https://github.com/okd-project/okd/releases/download/4.11.0-0.okd-2022-12-02-145640/openshift-client-linux-4.11.0-0.okd-2022-12-02-145640.tar.gz \ | ||
&& wget --no-verbose -O oc.tgz https://github.com/okd-project/okd/releases/download/4.15.0-0.okd-2024-02-23-163410/openshift-client-linux-4.15.0-0.okd-2024-02-23-163410.tar.gz \ | ||
&& mkdir "oc-dir" \ | ||
&& tar -C "oc-dir" -xf oc.tgz \ | ||
&& install oc-dir/oc /usr/local/bin \ | ||
&& rm -rf "oc-dir" oc.tgz \ | ||
&& command -v oc | ||
|
||
# helm | ||
# Install helm v3.16.2 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O helm.tgz https://get.helm.sh/helm-v3.11.2-linux-amd64.tar.gz \ | ||
&& wget --no-verbose -O helm.tgz https://get.helm.sh/helm-v3.16.2-linux-amd64.tar.gz \ | ||
&& tar -xf helm.tgz \ | ||
&& install linux-amd64/helm /usr/local/bin \ | ||
&& rm -rf helm.tgz linux-amd64 \ | ||
&& command -v helm | ||
|
||
# Install gradle | ||
# Install gradle 7.5.1 | ||
ARG GRADLE_VERSION=7.5.1 | ||
ENV PATH=$PATH:/opt/gradle/bin | ||
RUN set -ex \ | ||
|
@@ -106,7 +106,7 @@ RUN set -ex \ | |
&& rmdir gradle-${GRADLE_VERSION} \ | ||
&& command -v gradle | ||
|
||
# Install aws cli | ||
# Install aws cli 2.7.17 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O "awscliv2.zip" "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.7.17.zip" \ | ||
&& unzip awscliv2.zip \ | ||
|
@@ -115,21 +115,21 @@ RUN set -ex \ | |
&& rm -rf aws \ | ||
&& aws --version | ||
|
||
# Install yq v4.16.2 | ||
# Install yq v4.44.3 | ||
RUN set -ex \ | ||
&& wget --no-verbose "https://github.com/mikefarah/yq/releases/download/v4.16.2/yq_linux_amd64" \ | ||
&& sha256sum --check --status <<< "5c911c4da418ae64af5527b7ee36e77effb85de20c2ce732ed14c7f72743084d yq_linux_amd64" \ | ||
&& wget --no-verbose "https://github.com/mikefarah/yq/releases/download/v4.44.3/yq_linux_amd64" \ | ||
&& sha256sum --check --status <<< "a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 yq_linux_amd64" \ | ||
&& mv yq_linux_amd64 /usr/bin/yq \ | ||
&& chmod +x /usr/bin/yq | ||
|
||
# Install hub-comment | ||
# Install hub-comment 0.1.0-rc6 | ||
RUN set -ex \ | ||
&& wget --quiet https://github.com/joshdk/hub-comment/releases/download/0.1.0-rc6/hub-comment_linux_amd64 \ | ||
&& sha256sum --check --status <<< "2a2640f44737873dfe30da0d5b8453419d48a494f277a70fd9108e4204fc4a53 hub-comment_linux_amd64" \ | ||
&& mv hub-comment_linux_amd64 /usr/bin/hub-comment \ | ||
&& chmod +x /usr/bin/hub-comment | ||
|
||
# Install shellcheck | ||
# Install shellcheck 0.10.0 | ||
ARG SHELLCHECK_VERSION=0.10.0 | ||
ARG SHELLCHECK_SHA256=6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87 | ||
RUN set -ex \ | ||
|
@@ -141,7 +141,7 @@ RUN set -ex \ | |
&& rm -rf "shellcheck-v${SHELLCHECK_VERSION}" \ | ||
&& shellcheck --version | ||
|
||
# Install hashicorp vault | ||
# Install hashicorp vault 1.12.1 | ||
ARG VAULT_VERSION=1.12.1 | ||
ARG VAULT_SHA256=839fa81eacd250e0b0298e518751a792cd5d7194650af78cf5da74d7b7b1e5fb | ||
RUN set -ex \ | ||
|
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 |
---|---|---|
|
@@ -109,11 +109,11 @@ ENV PATH=$PATH:/usr/pgsql-14/bin | |
|
||
# Install bats | ||
RUN set -ex \ | ||
&& npm install -g bats@1.10.0 [email protected] [email protected] tap-junit \ | ||
&& npm install -g bats@1.11.0 [email protected] [email protected] tap-junit \ | ||
&& bats -v | ||
|
||
# Install docker binary | ||
ARG DOCKER_VERSION=20.10.6 | ||
# Install docker 27.3.1 | ||
ARG DOCKER_VERSION=27.3.1 | ||
RUN set -ex \ | ||
&& DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" \ | ||
&& echo Docker URL: $DOCKER_URL \ | ||
|
@@ -128,24 +128,24 @@ RUN set -ex \ | |
# Symlink python to python3 | ||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
|
||
# oc | ||
# Install oc 4.15.0-0.okd-2024-02-23-163410 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O oc.tgz https://github.com/okd-project/okd/releases/download/4.11.0-0.okd-2022-12-02-145640/openshift-client-linux-4.11.0-0.okd-2022-12-02-145640.tar.gz \ | ||
&& wget --no-verbose -O oc.tgz https://github.com/okd-project/okd/releases/download/4.15.0-0.okd-2024-02-23-163410/openshift-client-linux-4.15.0-0.okd-2024-02-23-163410.tar.gz \ | ||
&& mkdir "oc-dir" \ | ||
&& tar -C "oc-dir" -xf oc.tgz \ | ||
&& install oc-dir/oc /usr/local/bin \ | ||
&& rm -rf "oc-dir" oc.tgz \ | ||
&& command -v oc | ||
|
||
# helm | ||
# Install helm v3.16.2 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O helm.tgz https://get.helm.sh/helm-v3.11.2-linux-amd64.tar.gz \ | ||
&& wget --no-verbose -O helm.tgz https://get.helm.sh/helm-v3.16.2-linux-amd64.tar.gz \ | ||
&& tar -xf helm.tgz \ | ||
&& install linux-amd64/helm /usr/local/bin \ | ||
&& rm -rf helm.tgz linux-amd64 \ | ||
&& command -v helm | ||
|
||
# Install gradle | ||
# Install gradle 7.5.1 | ||
ARG GRADLE_VERSION=7.5.1 | ||
ENV PATH=$PATH:/opt/gradle/bin | ||
RUN set -ex \ | ||
|
@@ -157,7 +157,7 @@ RUN set -ex \ | |
&& rmdir gradle-${GRADLE_VERSION} \ | ||
&& command -v gradle | ||
|
||
# Install aws cli | ||
# Install aws cli 2.7.17 | ||
RUN set -ex \ | ||
&& wget --no-verbose -O "awscliv2.zip" "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.7.17.zip" \ | ||
&& unzip awscliv2.zip \ | ||
|
@@ -166,21 +166,21 @@ RUN set -ex \ | |
&& rm -rf aws \ | ||
&& aws --version | ||
|
||
# Install yq v4.16.2 | ||
# Install yq v4.44.3 | ||
RUN set -ex \ | ||
&& wget --no-verbose "https://github.com/mikefarah/yq/releases/download/v4.16.2/yq_linux_amd64" \ | ||
&& sha256sum --check --status <<< "5c911c4da418ae64af5527b7ee36e77effb85de20c2ce732ed14c7f72743084d yq_linux_amd64" \ | ||
&& wget --no-verbose "https://github.com/mikefarah/yq/releases/download/v4.44.3/yq_linux_amd64" \ | ||
&& sha256sum --check --status <<< "a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 yq_linux_amd64" \ | ||
&& mv yq_linux_amd64 /usr/bin/yq \ | ||
&& chmod +x /usr/bin/yq | ||
|
||
# Install hub-comment | ||
# Install hub-comment 0.1.0-rc6 | ||
RUN set -ex \ | ||
&& wget --quiet https://github.com/joshdk/hub-comment/releases/download/0.1.0-rc6/hub-comment_linux_amd64 \ | ||
&& sha256sum --check --status <<< "2a2640f44737873dfe30da0d5b8453419d48a494f277a70fd9108e4204fc4a53 hub-comment_linux_amd64" \ | ||
&& mv hub-comment_linux_amd64 /usr/bin/hub-comment \ | ||
&& chmod +x /usr/bin/hub-comment | ||
|
||
# Install shellcheck | ||
# Install shellcheck 0.10.0 | ||
ARG SHELLCHECK_VERSION=0.10.0 | ||
ARG SHELLCHECK_SHA256=6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87 | ||
RUN set -ex \ | ||
|
@@ -192,7 +192,7 @@ RUN set -ex \ | |
&& rm -rf "shellcheck-v${SHELLCHECK_VERSION}" \ | ||
&& shellcheck --version | ||
|
||
# Install hashicorp vault | ||
# Install hashicorp vault 1.12.1 | ||
ARG VAULT_VERSION=1.12.1 | ||
ARG VAULT_SHA256=839fa81eacd250e0b0298e518751a792cd5d7194650af78cf5da74d7b7b1e5fb | ||
RUN set -ex \ | ||
|
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 wonder if we should get this from the openshift mirror instead