Skip to content

Commit

Permalink
add git authors to fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
schrodit committed Nov 17, 2024
1 parent 87f1982 commit cf9cb65
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23.x"
- name: Run linters
- name: Setup Git Identity
run: git config --global user.email "github-actions[bot]@users.noreply.github.com" && git config --global user.name "github-actions[bot]"
- name: Run verify
run: make verify-extended

test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand All @@ -36,7 +38,7 @@ jobs:
needs: [check, test]
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
Expand Down

0 comments on commit cf9cb65

Please sign in to comment.