Skip to content

Commit e4c94b3

Browse files
committed
Incrementing version and updating a few scripts
1 parent 40d54a6 commit e4c94b3

3 files changed

Lines changed: 769 additions & 5 deletions

File tree

common.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ install_docker_compose_steamdeck() {
817817
mkdir -p $DOCKER_CONFIG/cli-plugins
818818

819819
# Download Docker Compose for x86_64 (Steam Deck architecture)
820-
curl -SL https://github.com/docker/compose/releases/download/v2.36.0/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
820+
curl -SL https://github.com/docker/compose/releases/download/v5.0.2/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
821821
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
822822

823823
echo -e "${GREEN}✅ Docker Compose v2 installed successfully for Steam Deck ✅${NC}"
@@ -826,7 +826,7 @@ install_docker_compose_steamdeck() {
826826
install_buildx() {
827827
arch=$(uname -m)
828828
os=$(uname -s | tr '[:upper:]' '[:lower:]') # Convert OS to lowercase
829-
version="v0.30.1"
829+
version="v0.31.0"
830830

831831
# Map architecture to buildx naming convention
832832
case "$arch" in
@@ -871,7 +871,7 @@ install_buildx() {
871871
install_docker_compose() {
872872
arch=$(uname -m)
873873
os=$(uname -s | tr '[:upper:]' '[:lower:]') # Convert OS to lowercase
874-
version="v5.0.1"
874+
version="v5.0.2"
875875

876876
# Map architecture to Docker Compose naming convention
877877
case "$arch" in
@@ -938,7 +938,7 @@ install_go() {
938938
arch=$(uname -m)
939939
os=$(uname -s | tr '[:upper:]' '[:lower:]') # Normalize OS name to lowercase
940940
prog=""
941-
version="1.25.5"
941+
version="1.25.6"
942942

943943
# Map architecture and OS to Go binary tar.gz naming convention
944944
case "$arch" in

0 commit comments

Comments
 (0)