Skip to content

Commit

Permalink
Merge pull request #323 from ysugimoto/feature/update-ci-actions
Browse files Browse the repository at this point in the history
Feature/update ci actions
  • Loading branch information
ysugimoto authored Jun 9, 2024
2 parents b6d09cb + 92dfca2 commit 673ed3e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.2
- name: Run tests
run: make test
- name: Lint programs
uses: golangci/golangci-lint-action@v5
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
skip-pkg-cache: true
skip-build-cache: true
skip-go-installation: true
skip-cache: true
skip-save-cache: true
install-mode: binary
10 changes: 5 additions & 5 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.2
- name: Run tests
run: make test
- name: Lint programs
uses: golangci/golangci-lint-action@v5
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
skip-pkg-cache: true
skip-build-cache: true
skip-go-installation: true
skip-cache: true
skip-save-cache: true
install-mode: binary
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.2
- name: Run tests
run: make test
- name: Lint programs
uses: golangci/golangci-lint-action@v5
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
skip-pkg-cache: true
skip-build-cache: true
skip-go-installation: true
skip-cache: true
skip-save-cache: true
install-mode: binary
- name: Set version
id: version
run: |
Expand Down

0 comments on commit 673ed3e

Please sign in to comment.