Skip to content

Commit

Permalink
update actions/setup-go to v5 and actions/checkout to v4 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
hkobayash authored Feb 29, 2024
1 parent 5a46672 commit 497c885
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version-file: go.mod

- name: Format
run: go fmt && git diff --exit-code
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-zabbix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version-file: go.mod

- name: Test
env:
Expand Down

0 comments on commit 497c885

Please sign in to comment.