diff options
author | bnewbold <bnewbold@robocracy.org> | 2025-01-02 15:57:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-02 12:57:03 -0800 |
commit | 59709ad8d8743ae53272b1852b6948ea37eebfed (patch) | |
tree | 033793137c2c26cea79fcd1033288131e456ea16 | |
parent | 85ad52e3981d00ec487e1bb5fc27819f63c2f8c4 (diff) | |
download | voidsky-59709ad8d8743ae53272b1852b6948ea37eebfed.tar.zst |
bump golang version to v1.23 (#7325)
-rw-r--r-- | .github/workflows/golang-test-lint.yml | 4 | ||||
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Dockerfile.embedr | 2 | ||||
-rw-r--r-- | bskyweb/README.md | 2 | ||||
-rw-r--r-- | bskyweb/go.mod | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml index c8124dbad..af849d135 100644 --- a/.github/workflows/golang-test-lint.yml +++ b/.github/workflows/golang-test-lint.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go tooling uses: actions/setup-go@v3 with: - go-version: '1.22' + go-version: '1.23' - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - name: Check @@ -36,7 +36,7 @@ jobs: - name: Set up Go tooling uses: actions/setup-go@v3 with: - go-version: '1.22' + go-version: '1.23' - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - name: Lint diff --git a/Dockerfile b/Dockerfile index 557321872..4a9a7e87f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bullseye AS build-env +FROM golang:1.23-bullseye AS build-env WORKDIR /usr/src/social-app diff --git a/Dockerfile.embedr b/Dockerfile.embedr index 3623b3293..46719dc43 100644 --- a/Dockerfile.embedr +++ b/Dockerfile.embedr @@ -1,4 +1,4 @@ -FROM golang:1.22-bullseye AS build-env +FROM golang:1.23-bullseye AS build-env WORKDIR /usr/src/social-app diff --git a/bskyweb/README.md b/bskyweb/README.md index 4717c45e0..6da8e1d06 100644 --- a/bskyweb/README.md +++ b/bskyweb/README.md @@ -24,7 +24,7 @@ Then build and copy over the big 'ol `bundle.web.js` file: ### Golang Daemon -Install golang. We are generally using v1.22+. +Install golang. We generally develop against the current stable release of the language, as declared in `go.mod`. In this directory (`bskyweb/`): diff --git a/bskyweb/go.mod b/bskyweb/go.mod index d07bb7f89..90a205d0c 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -1,8 +1,8 @@ module github.com/bluesky-social/social-app/bskyweb -go 1.22 +go 1.23 -toolchain go1.22.4 +toolchain go1.23.4 require ( github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141 |