Skip to content

Commit 2a93044

Browse files
authored
Update GHA's (#94)
1 parent 10a7a9e commit 2a93044

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
name: Deploy Docs site
2+
name: Build and Deploy Docs https://tfx.rocks
33

44
# Controls when the workflow will run
55
on:
@@ -23,7 +23,7 @@ jobs:
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Copy Release Notes for docs site
2929
uses: canastro/copy-file-action@master

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build `tfx` - Cross Compile
1+
name: TFx Cross Compile
22

33
on:
44
push:
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121

@@ -25,7 +25,7 @@ jobs:
2525
# version: v1.32.2
2626

2727
- name: Install Go
28-
uses: actions/setup-go@v2
28+
uses: actions/setup-go@v4
2929
with:
3030
go-version: 1.21.0
3131
- name: Install gox
@@ -49,7 +49,7 @@ jobs:
4949
run: ./pkg/linux_amd64/tfx --version
5050

5151
# Package all binaries together
52-
- uses: actions/upload-artifact@v2
52+
- uses: actions/upload-artifact@v3
5353
with:
5454
name: tfx-artifacts
5555
path: ./pkg/*

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: goreleaser
1+
name: TFx Release
22

33
on:
44
push:
@@ -17,12 +17,12 @@ jobs:
1717
steps:
1818
-
1919
name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
-
2424
name: Set up Go
25-
uses: actions/setup-go@v3
25+
uses: actions/setup-go@v4
2626
with:
2727
go-version: 1.21
2828
-

0 commit comments

Comments
 (0)