Skip to content

Commit

Permalink
ci: upgrade actions/checkout@v4 actions/setup-go@v5
Browse files Browse the repository at this point in the history
  • Loading branch information
justlorain committed Jan 29, 2025
1 parent 13ed70b commit 4f090c6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 29 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/license-check.yml

This file was deleted.

12 changes: 9 additions & 3 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@ 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.23

- name: Install NWA
run: go install github.com/B1NARY-GR0UP/nwa@latest

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
run: go test -v ./...

- name: License Header Check
run: nwa check -c "BINARY Members" -s "internal/header.go" -f -V "**/*.go"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,10 @@ 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.23
Expand Down

0 comments on commit 4f090c6

Please sign in to comment.