diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 41760a6..914bacb 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -6,12 +6,13 @@ jobs: name: lint runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v3 - name: Install Go uses: actions/setup-go@v4 with: - go-version: 1.18.x - - uses: actions/checkout@v3 + go-version-file: go.mod - name: golangci-lint uses: wandera/golangci-lint-action@v3 with: - version: v1.46.0 + version: v1.52.2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb4d460..885518f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,22 +14,12 @@ jobs: - goarch: "386" goos: darwin steps: - - name: Install Go - uses: actions/setup-go@v4 - with: - go-version: 1.19.x - name: Checkout the latest code uses: actions/checkout@v3 - - name: Cache - uses: actions/cache@v3 + - name: Install Go + uses: actions/setup-go@v4 with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- + go-version-file: go.mod - name: Build ${{ matrix.goos }}/${{ matrix.goarch }} env: GOOS: ${{ matrix.goos }} @@ -47,7 +37,7 @@ jobs: tar -czvf helm-github_${VERSION}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz -C dist/ . sha256sum "helm-github_${VERSION}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz" | awk '{ print $1 }' > helm-github_${VERSION}_${{ matrix.goos }}_${{ matrix.goarch }}_checksum.txt - name: Release - uses: wandera/action-gh-release@v1 + uses: softprops/action-gh-release@v1 with: files: | *.tar.gz diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 403a21d..57ce677 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,25 +17,11 @@ jobs: os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: + - name: Checkout code + uses: actions/checkout@v3 - name: Install Go uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - name: Checkout code - uses: actions/checkout@v3 - - name: Cache - uses: actions/cache@v3 - with: - # In order: - # * Module download cache - # * Build cache (Linux) - # * Build cache (Mac) - path: | - ~/go/pkg/mod - ~/.cache/go-build - ~/Library/Caches/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Test run: make test