Skip to content

Commit 7c6f5c3

Browse files
authored
Merge pull request #565 from drpebcak/tag-ui
2 parents c4780e0 + f33bec8 commit 7c6f5c3

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ubuntu-22.04
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- name: Set up Go
26-
uses: actions/setup-go@v4
26+
uses: actions/setup-go@v5
2727
with:
2828
cache: false
2929
go-version: "1.22"

.github/workflows/push-quickstart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 1
1919
- name: Copy files to S3

.github/workflows/release.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,19 @@ jobs:
1212
release-tag:
1313
runs-on: ubuntu-22.04
1414
steps:
15+
- name: trigger ui repo tag workflow
16+
uses: peter-evans/repository-dispatch@v3
17+
with:
18+
token: ${{ secrets.DISPATCH_PAT }}
19+
repository: gptscript-ai/ui
20+
event-type: release
21+
client-payload: '{"tag": "${{ github.ref_name }}"}'
1522
- name: Checkout
16-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
1724
with:
1825
fetch-depth: 0
1926
- name: Set up Go
20-
uses: actions/setup-go@v4
27+
uses: actions/setup-go@v5
2128
with:
2229
cache: false
2330
go-version: "1.22"

.github/workflows/validate-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17-
- uses: actions/setup-go@v4
17+
- uses: actions/setup-go@v5
1818
with:
1919
cache: false
2020
go-version: "1.22"

0 commit comments

Comments
 (0)