Skip to content

Commit

Permalink
update actions and go version
Browse files Browse the repository at this point in the history
  • Loading branch information
ttomsu committed Mar 14, 2024
1 parent dc8c87a commit bb3705b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: '1.22'

- name: Build All Packages
run: go build -v ./...
Expand All @@ -34,7 +34,7 @@ jobs:
run: go build -o gphotobackup-linux-$GITHUB_RUN_ID gphotobackup.go

- name: Save Binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gphotobackup-linux
path: gphotobackup-linux*
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/ttomsu/gphotobackup

go 1.19
go 1.21

require (
github.com/gphotosuploader/googlemirror v0.5.0
Expand Down

0 comments on commit bb3705b

Please sign in to comment.