Skip to content

Commit

Permalink
upgrade go version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucostus committed Jan 3, 2025
1 parent 5dcfa8d commit 5774dbe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ on:
branches: [ main ]
workflow_dispatch:

env:
GO_VERSION: '1.23.4'

jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.21.5'
go-version: ${{ env.GO_VERSION }}
cache: true
- uses: actions/checkout@v4
- name: golangci-lint
Expand Down Expand Up @@ -75,7 +78,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.1'
go-version: ${{ env.GO_VERSION }}
cache: true

- name: Install dependencies
Expand All @@ -91,13 +94,13 @@ jobs:

- uses: actions/cache@v4
with:
path: ./.cache # Note that this path is not influenced by working-directory set in defaults, for example
path: ./.cache # Note that this path is not influenced by working-directory set in defaults
key: multena-proxy-${{ github.run_id }}

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.1'
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install dependencies
run: go get .
Expand Down Expand Up @@ -125,7 +128,7 @@ jobs:

- uses: actions/cache@v4
with:
path: ./.cache # Note that this path is not influenced by working-directory set in defaults, for example
path: ./.cache # Note that this path is not influenced by working-directory set in defaults
key: multena-proxy-${{ github.run_id }}
fail-on-cache-miss: true

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/gepaplexx/multena-proxy

go 1.23.0

toolchain go1.23.4
go 1.23.4

require (
github.com/MicahParks/keyfunc/v3 v3.3.5
Expand Down

0 comments on commit 5774dbe

Please sign in to comment.