Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: git config --global --add safe.directory $(pwd)
- name: Install libgit2 1.5 for git2go v34
run: backend/scripts/install-libgit2.sh
- name: Install Go 1.26.2
- name: Install Go 1.26.6
run: backend/scripts/install-go.sh
- name: Install mockery 3.7.2
run: backend/scripts/install-mockery.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- run: git config --global --add safe.directory $(pwd)
- name: Install libgit2 1.5 for git2go v34
run: backend/scripts/install-libgit2.sh
- name: Install Go 1.26.2
- name: Install Go 1.26.6
run: backend/scripts/install-go.sh
- name: Build Python
run: |
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- run: git config --global --add safe.directory $(pwd)
- name: Install libgit2 1.5 for git2go v34
run: backend/scripts/install-libgit2.sh
- name: Install Go 1.26.2
- name: Install Go 1.26.6
run: backend/scripts/install-go.sh
- name: Build Python
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: git config --global --add safe.directory $(pwd)
- name: Install libgit2 1.5 for git2go v34
run: backend/scripts/install-libgit2.sh
- name: Install Go 1.26.2
- name: Install Go 1.26.6
run: backend/scripts/install-go.sh
- name: Install mockery 3.7.2
run: backend/scripts/install-mockery.sh
Expand Down
6 changes: 3 additions & 3 deletions backend/scripts/install-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

set -eu

GO_VERSION=1.26.2
GO_VERSION=1.26.6
INSTALL_DIR=/opt/go/$GO_VERSION
GO_BIN=$INSTALL_DIR/bin/go

Expand Down Expand Up @@ -54,11 +54,11 @@ fi
case "$(uname -m)" in
x86_64|amd64)
archive_name=go${GO_VERSION}.linux-amd64.tar.gz
archive_sha256=990e6b4bbba816dc3ee129eaeaf4b42f17c2800b88a2166c265ac1a200262282
archive_sha256=708effb774be8237570d0add163225abbdfaf4fca28b2611df167beba4feef89
;;
aarch64|arm64)
archive_name=go${GO_VERSION}.linux-arm64.tar.gz
archive_sha256=c958a1fe1b361391db163a485e21f5f228142d6f8b584f6bef89b26f66dc5b23
archive_sha256=d0507e9e9d7fe012aae570108cbd76c15de879e17130ab8cb90d4d7445cb1f2e
;;
*)
echo "unsupported architecture: $(uname -m)" >&2
Expand Down
Loading