Skip to content

Commit

Permalink
Merge pull request #1244 from austinvazquez/update-github-actions-pac…
Browse files Browse the repository at this point in the history
…kages

Update GitHub Actions packages to resolve warnings in CI
  • Loading branch information
AkihiroSuda authored Feb 12, 2024
2 parents 68346ed + 1a729af commit 0e1419d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -30,7 +30,7 @@ jobs:
go get -d ./schema/...
- name: run golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: v1.51.2
args: --verbose
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -30,7 +30,7 @@ jobs:
go get -d ./schema/...
- name: run golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: v1.51.2
args: --verbose
Expand Down

0 comments on commit 0e1419d

Please sign in to comment.