Skip to content

Commit 38f1028

Browse files
committed
chore: update api-specs GH workflow
1 parent d8e9875 commit 38f1028

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/api-specs-pr.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ name: Scheduled API Specs Pull Request
22
on:
33
schedule:
44
- cron: '0 */12 * * *'
5-
65
jobs:
76
api-specs-pr:
87
runs-on: ubuntu-latest
98
steps:
10-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1110
- name: Set up Go
12-
uses: actions/setup-go@v2
11+
uses: actions/setup-go@v5
1312
with:
14-
go-version: 1.19
15-
- run: |
16-
git config --global user.name "algolia-ci"
17-
git config --global user.email "[email protected]"
13+
go-version: "1.23"
1814
- run: make api-specs-pr
1915
env:
20-
GH_TOKEN: ${{ secrets.GH_SECRET }}
16+
GH_TOKEN: ${{ secrets.GH_SECRET }}
17+
GIT_COMMITTER_NAME: algolia-ci
18+
GIT_AUTHOR_NAME: algolia-ci
19+
GIT_COMMITTER_EMAIL: [email protected]
20+
GIT_AUTHOR_EMAIL: [email protected]

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v5
1414
with:
15-
go-version: 1.23.4
15+
go-version: "1.23"
1616
- name: Build
1717
run: go build -v ./...
1818
- name: Test

.github/workflows/golangci-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.23.4
19+
go-version: "1.23"
2020
- uses: actions/checkout@v4
2121
- name: golangci-lint
2222
uses: golangci/golangci-lint-action@v6

0 commit comments

Comments
 (0)