Skip to content

Commit

Permalink
Update GH actions used for builds and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stoewer committed Jul 5, 2024
1 parent 59137c1 commit 85cbe46
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:

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.21
go-version: ^1.22
cache: true

- name: Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.54.2
version: v1.59.1
args: --config ./golangci.yml

- name: Test
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
release:
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.21
go-version: ^1.22
cache: true

- name: Test
run: make test

- name: Goreleaser
uses: goreleaser/goreleaser-action@v3
uses: goreleaser/goreleaser-action@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -30,7 +30,7 @@ jobs:
args: release --rm-dist

- name: Upload assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: parquet-cli
path: dist/*

0 comments on commit 85cbe46

Please sign in to comment.