From 400ecfb79c1033dce280cf62a40a514d29d4d1d5 Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 22 Aug 2021 23:33:58 +0200 Subject: Update github actions to go1.17 and increase deadline (#1573) --- .github/workflows/development.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index c9e45fc1..e9370c70 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -11,12 +11,12 @@ jobs: - name: Run golangci-lint uses: golangci/golangci-lint-action@v2 with: - version: v1.29 + version: latest args: "-v --new-from-rev HEAD~5" test-build-upload: strategy: matrix: - go-version: [1.15.x, 1.16.x] + go-version: [1.16.x, 1.17.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: @@ -39,19 +39,19 @@ jobs: GOOS=windows GOARCH=amd64 go build -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/win/matterbridge-$VERSION-windows-amd64.exe GOOS=darwin GOARCH=amd64 go build -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/mac/matterbridge-$VERSION-darwin-amd64 - name: Upload linux 64-bit - if: startsWith(matrix.go-version,'1.16') + if: startsWith(matrix.go-version,'1.17') uses: actions/upload-artifact@v2 with: name: matterbridge-linux-64bit path: output/lin - name: Upload windows 64-bit - if: startsWith(matrix.go-version,'1.16') + if: startsWith(matrix.go-version,'1.17') uses: actions/upload-artifact@v2 with: name: matterbridge-windows-64bit path: output/win - name: Upload darwin 64-bit - if: startsWith(matrix.go-version,'1.16') + if: startsWith(matrix.go-version,'1.17') uses: actions/upload-artifact@v2 with: name: matterbridge-darwin-64bit -- cgit v1.2.3