Skip to content

Commit d6bef23

Browse files
fix: remove unnecessary token (#24)
* fix: remove unnecessary token * Replace token
1 parent ff44d85 commit d6bef23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: build
2727
run: go tool task build # needed to download the embedded resources
2828
env:
29-
GH_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }}
29+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030

3131
- uses: dprint/check@v2.2
3232
with:

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
- name: Run tests
2222
run: go tool task test
2323
env:
24-
GH_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }}
24+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
env:
6666
GOARCH: ${{ matrix.arch }}
6767
GOOS: ${{ matrix.os }}
68-
GH_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }}
68+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969

7070
- name: Prepare Build Artifacts (!windows)
7171
working-directory: ./${{ env.DIST_DIR }}

0 commit comments

Comments
 (0)