Skip to content

Commit b81ff43

Browse files
authored
Merge pull request #1 from AS60900/cherry-pr-1cd7ebc
fix: updated go and release secret
2 parents b11cd26 + a281d2e commit b81ff43

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-go@v3
2626
with:
27-
go-version: 1.18
27+
go-version: 1.24
2828

2929
- name: Generate docs
3030
run: go generate -x
@@ -39,4 +39,4 @@ jobs:
3939
build_dir: docs/build/
4040
fqdn: pathvector.io
4141
env:
42-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: goreleaser
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v[0-9]+.[0-9]+.[0-9]+' # symver vmajor.minor.patch format only
@@ -16,7 +17,7 @@ jobs:
1617
- name: Set up Go
1718
uses: actions/setup-go@v3
1819
with:
19-
go-version: 1.18
20+
go-version: 1.24
2021

2122
- name: Install PDF generation dependencies
2223
run: |
@@ -38,5 +39,5 @@ jobs:
3839
version: latest
3940
args: release --clean
4041
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
4243
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}

.github/workflows/snapshot.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Snapshot
22

33
on:
4+
workflow_dispatch:
45
issue_comment:
56
types: [created, edited]
67

@@ -29,7 +30,7 @@ jobs:
2930
- name: Set up Go
3031
uses: actions/setup-go@v3
3132
with:
32-
go-version: 1.18
33+
go-version: 1.24
3334

3435
- name: Install PDF generation dependencies
3536
run: |
@@ -45,7 +46,7 @@ jobs:
4546
version: latest
4647
args: release --snapshot --rm-dist --release-header distrib/snapshot-header.md
4748
env:
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
4950
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
5051

5152
- uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)