Skip to content

Commit

Permalink
bump golang version to v1.23 (#7325)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnewbold authored Jan 2, 2025
1 parent 85ad52e commit 59709ad
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golang-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.embedr
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion bskyweb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/`):

Expand Down
4 changes: 2 additions & 2 deletions bskyweb/go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 59709ad

Please sign in to comment.