Skip to content

Commit

Permalink
Upgrade action packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kbinani committed Aug 9, 2024
1 parent 233868b commit e520a41
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,13 @@ jobs:
- os: ubuntu-latest
GOOS: netbsd
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: 'stable'

- name: Build
env:
- env:
GOOS: ${{ matrix.GOOS }}
run: |
go build ./example/main.go
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@ jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: 'stable'

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- uses: golangci/golangci-lint-action@v6
with:
version: latest
only-new-issues: true

0 comments on commit e520a41

Please sign in to comment.