Skip to content

Commit

Permalink
Update to Go 1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marcfrei committed Nov 7, 2024
1 parent bd939f2 commit 7a26cc0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.2'
go-version: '1.23.3'

- name: go build
run: go build -o bin/timeservice
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In Proceedings of the Symposium on Reliable Distributed Systems (SRDS) 2022.

## Running a simple IP-based server

Reference platform: Ubuntu 22.04 LTS, Go 1.23.2; see [below](https://github.com/marcfrei/scion-time/edit/main/README.md#installing-prerequisites-for-a-scion-test-environment).
Reference platform: Ubuntu 22.04 LTS, Go 1.23.3; see [below](https://github.com/marcfrei/scion-time/edit/main/README.md#installing-prerequisites-for-a-scion-test-environment).

```
cd ~
Expand Down Expand Up @@ -55,7 +55,7 @@ In an additional session:

## Installing prerequisites for a SCION test environment

Reference platform: Ubuntu 22.04 LTS, Go 1.23.2
Reference platform: Ubuntu 22.04 LTS, Go 1.23.3

```
sudo apt-get update
Expand All @@ -67,10 +67,10 @@ On x86-64:

```
sudo rm -rf /usr/local/go
curl -LO https://golang.org/dl/go1.23.2.linux-amd64.tar.gz
echo "542d3c1705f1c6a1c5a80d5dc62e2e45171af291e755d591c5e6531ef63b454e go1.23.2.linux-amd64.tar.gz" | sha256sum -c
sudo tar -C /usr/local -xzf go1.23.2.linux-amd64.tar.gz
rm go1.23.2.linux-amd64.tar.gz
curl -LO https://golang.org/dl/go1.23.3.linux-amd64.tar.gz
echo "a0afb9744c00648bafb1b90b4aba5bdb86f424f02f9275399ce0c20b93a2c3a8 go1.23.3.linux-amd64.tar.gz" | sha256sum -c
sudo tar -C /usr/local -xzf go1.23.3.linux-amd64.tar.gz
rm go1.23.3.linux-amd64.tar.gz
echo >> .bash_profile
echo 'export PATH=$PATH:/usr/local/go/bin' >> .bash_profile
source ~/.bash_profile
Expand All @@ -81,10 +81,10 @@ On ARM64:

```
sudo rm -rf /usr/local/go
curl -LO https://golang.org/dl/go1.23.2.linux-arm64.tar.gz
echo "f626cdd92fc21a88b31c1251f419c17782933a42903db87a174ce74eeecc66a9 go1.23.2.linux-arm64.tar.gz" | sha256sum -c
sudo tar -C /usr/local -xzf go1.23.2.linux-arm64.tar.gz
rm go1.23.2.linux-arm64.tar.gz
curl -LO https://golang.org/dl/go1.23.3.linux-arm64.tar.gz
echo "1f7cbd7f668ea32a107ecd41b6488aaee1f5d77a66efd885b175494439d4e1ce go1.23.3.linux-arm64.tar.gz" | sha256sum -c
sudo tar -C /usr/local -xzf go1.23.3.linux-arm64.tar.gz
rm go1.23.3.linux-arm64.tar.gz
echo >> .bash_profile
echo 'export PATH=$PATH:/usr/local/go/bin' >> .bash_profile
source ~/.bash_profile
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module example.com/scion-time

go 1.23.2
go 1.23.3

require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2
Expand Down
2 changes: 1 addition & 1 deletion testnet/offplot/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module example.com/m

go 1.23.2
go 1.23.3

require gonum.org/v1/plot v0.14.0

Expand Down

0 comments on commit 7a26cc0

Please sign in to comment.