diff --git a/.github/workflows/cover.yml b/.github/workflows/cover.yml index 4f6ead8..4a0a96a 100644 --- a/.github/workflows/cover.yml +++ b/.github/workflows/cover.yml @@ -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 @@ -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) \ No newline at end of file + run: bash <(curl -s https://codecov.io/bash) + diff --git a/.github/workflows/cpr.yml b/.github/workflows/cpr.yml index 9c94b77..040448e 100644 --- a/.github/workflows/cpr.yml +++ b/.github/workflows/cpr.yml @@ -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 }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a5556cb..cd70ee4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 \ No newline at end of file + version: latest + diff --git a/.github/workflows/self-test.yml b/.github/workflows/self-test.yml index 2fd343a..7ec2f72 100644 --- a/.github/workflows/self-test.yml +++ b/.github/workflows/self-test.yml @@ -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