Skip to content

Commit

Permalink
chore: ⬆ update to Go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleduigou committed Feb 21, 2024
1 parent 5679b28 commit 917c66b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.21
uses: actions/setup-go@v1
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Get dependencies
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
run: make zip

- name: Archive artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: budget2sheets.zip
path: budget2sheets.zip
2 changes: 1 addition & 1 deletion .github/workflows/sam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22
- uses: aws-actions/setup-sam@v2
with:
use-installer: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you want to fork the repo, replace the latest path element with your GitHub h
### Prerequisites

You will need to have Go installed on your machine.
Currently the project uses version 1.21
Currently the project uses version 1.22

### Building
You will find a Makefile at the root of the project.
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 github.com/jbleduigou/budget2sheets

go 1.21
go 1.22

require (
github.com/aws/aws-lambda-go v1.41.0
Expand Down

0 comments on commit 917c66b

Please sign in to comment.