Skip to content

Commit

Permalink
fix(ci): change version target to master instead of latest (#119)
Browse files Browse the repository at this point in the history
* fix(ci): change version target to master instead of latest

* chore: restore newlines
  • Loading branch information
Namchee authored Nov 22, 2024
1 parent 4246c03 commit 6bad713
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cover.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v2
Expand All @@ -16,4 +16,5 @@ jobs:
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)
run: bash <(curl -s https://codecov.io/bash)

2 changes: 1 addition & 1 deletion .github/workflows/cpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check PR semantics
uses: Namchee/conventional-pr@latest
uses: Namchee/conventional-pr@master
with:
access_token: ${{ secrets.ACCESS_TOKEN }}

5 changes: 3 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
version: latest

4 changes: 2 additions & 2 deletions .github/workflows/self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
cpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test validation to self
uses: ./
with:
access_token: ${{ secrets.ACCESS_TOKEN }}
access_token: ${{ secrets.GITHUB_TOKEN }}
edit: true
verbose: true

0 comments on commit 6bad713

Please sign in to comment.