Skip to content

Commit 06e8de6

Browse files
committed
chore(deps): bump CI Go bootstrap to 1.26.6
1 parent 0417eee commit 06e8de6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: git config --global --add safe.directory $(pwd)
3535
- name: Install libgit2 1.5 for git2go v34
3636
run: backend/scripts/install-libgit2.sh
37-
- name: Install Go 1.26.2
37+
- name: Install Go 1.26.6
3838
run: backend/scripts/install-go.sh
3939
- name: Install mockery 3.7.2
4040
run: backend/scripts/install-mockery.sh

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- run: git config --global --add safe.directory $(pwd)
5353
- name: Install libgit2 1.5 for git2go v34
5454
run: backend/scripts/install-libgit2.sh
55-
- name: Install Go 1.26.2
55+
- name: Install Go 1.26.6
5656
run: backend/scripts/install-go.sh
5757
- name: Build Python
5858
run: |
@@ -96,7 +96,7 @@ jobs:
9696
- run: git config --global --add safe.directory $(pwd)
9797
- name: Install libgit2 1.5 for git2go v34
9898
run: backend/scripts/install-libgit2.sh
99-
- name: Install Go 1.26.2
99+
- name: Install Go 1.26.6
100100
run: backend/scripts/install-go.sh
101101
- name: Build Python
102102
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: git config --global --add safe.directory $(pwd)
5050
- name: Install libgit2 1.5 for git2go v34
5151
run: backend/scripts/install-libgit2.sh
52-
- name: Install Go 1.26.2
52+
- name: Install Go 1.26.6
5353
run: backend/scripts/install-go.sh
5454
- name: Install mockery 3.7.2
5555
run: backend/scripts/install-mockery.sh

backend/scripts/install-go.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -eu
1919

20-
GO_VERSION=1.26.2
20+
GO_VERSION=1.26.6
2121
INSTALL_DIR=/opt/go/$GO_VERSION
2222
GO_BIN=$INSTALL_DIR/bin/go
2323

@@ -54,11 +54,11 @@ fi
5454
case "$(uname -m)" in
5555
x86_64|amd64)
5656
archive_name=go${GO_VERSION}.linux-amd64.tar.gz
57-
archive_sha256=990e6b4bbba816dc3ee129eaeaf4b42f17c2800b88a2166c265ac1a200262282
57+
archive_sha256=708effb774be8237570d0add163225abbdfaf4fca28b2611df167beba4feef89
5858
;;
5959
aarch64|arm64)
6060
archive_name=go${GO_VERSION}.linux-arm64.tar.gz
61-
archive_sha256=c958a1fe1b361391db163a485e21f5f228142d6f8b584f6bef89b26f66dc5b23
61+
archive_sha256=d0507e9e9d7fe012aae570108cbd76c15de879e17130ab8cb90d4d7445cb1f2e
6262
;;
6363
*)
6464
echo "unsupported architecture: $(uname -m)" >&2

0 commit comments

Comments
 (0)