Skip to content

Commit

Permalink
kie-issues#1600: address additional vulnerabilities (apache#2721)
Browse files Browse the repository at this point in the history
  • Loading branch information
porcelli authored and Dmitrii Tikhomirov committed Nov 3, 2024
1 parent 651ed2d commit 8d31f65
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 403 deletions.
4 changes: 2 additions & 2 deletions .ci/incubator-kie-tools-ci-build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ RUN curl -s "https://get.sdkman.io" | bash && \
sdk flush

# Golang setup
RUN wget https://go.dev/dl/go1.21.9.linux-amd64.tar.gz -P /tmp && \
sudo tar xzf /tmp/go1.21.9.linux-amd64.tar.gz -C /opt && rm /tmp/go1.21.9.linux-amd64.tar.gz && \
RUN wget https://go.dev/dl/go1.21.13.linux-amd64.tar.gz -P /tmp && \
sudo tar xzf /tmp/go1.21.13.linux-amd64.tar.gz -C /opt && rm /tmp/go1.21.13.linux-amd64.tar.gz && \
echo 'export GOPATH=${HOME}/go' | sudo tee /etc/profile.d/go.sh && \
echo 'export PATH=${PATH}:/opt/go/bin:${GOPATH}/bin' | sudo tee -a /etc/profile.d/go.sh && \
echo "source /etc/profile.d/go.sh" >> $HOME/.bashrc && \
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ runs:
java-version: 17
distribution: "temurin"

- name: "Set up GOLANG 1.21.9"
- name: "Set up GOLANG 1.21.13"
uses: actions/setup-go@v5
with:
go-version: "1.21.9"
go-version: "1.21.13"

- name: "Set up Maven"
uses: stCarolas/setup-maven@v5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ To build and test all packages of the Apache KIE Tools project, you're going to
- pnpm `9.3.0` _(To install, follow these instructions: https://pnpm.io/installation#using-npm)_
- Maven `3.9.6`
- Java `17`
- Go `1.21.9` _(To install, follow these instructions: https://go.dev/doc/install)_
- Go `1.21.13` _(To install, follow these instructions: https://go.dev/doc/install)_
- Python `3.12` _(To install, follow these instructions: https://www.python.org/downloads/)_
- Helm `3.13.3` _(To install, follow these instructions: https://helm.sh/docs/intro/install/)_
- Make
Expand Down
2 changes: 1 addition & 1 deletion devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"maven": "3.9.6",
"kubernetes-helm": "3.13.3",
"gnumake": "4.4.1",
"go": "1.21.9",
"go": "1.21.13",
"python": "3.12.2",
"libxml2": "2.13.3"
},
Expand Down
Loading

0 comments on commit 8d31f65

Please sign in to comment.