From bb3705b54750501c4ebf58353ec2eb6cb79857a2 Mon Sep 17 00:00:00 2001 From: Travis Tomsu Date: Thu, 14 Mar 2024 11:23:10 -0400 Subject: [PATCH] update actions and go version --- .github/workflows/go.yml | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dbbb264..29c426e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 ./... @@ -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* diff --git a/go.mod b/go.mod index 24f0405..8eaf0bb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ttomsu/gphotobackup -go 1.19 +go 1.21 require ( github.com/gphotosuploader/googlemirror v0.5.0