Skip to content

Commit

Permalink
Upgrade to Go 1.23
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Crane <[email protected]>
  • Loading branch information
marcus-crane committed Dec 8, 2024
1 parent 51e406e commit aa210b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ on:
push:
branches:
- main
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
deploy:
name: Deploy gunslinger
Expand Down Expand Up @@ -32,6 +30,7 @@ jobs:
tags: |
ghcr.io/marcus-crane/gunslinger:latest
ghcr.io/marcus-crane/gunslinger:${{ steps.slug.outputs.sha7 }}
- uses: superfly/[email protected]
with:
args: "deploy"
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: "flyctl deploy"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libvorbis-dev libogg-dev
- uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
- run: go mod download
- run: go test ./...
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.4-bookworm AS builder
FROM golang:1.23.3-bookworm AS builder

WORKDIR /app

Expand Down

0 comments on commit aa210b9

Please sign in to comment.