Skip to content

Commit 02e7de0

Browse files
committed
Update CI
1 parent 45870ff commit 02e7de0

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci-build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Setup Golang
1919
uses: actions/setup-go@v1
2020
with:
21-
go-version: '1.19'
21+
go-version: '1.21'
2222
- name: Download all Go modules
2323
run: |
2424
go mod download
@@ -32,11 +32,11 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3636
- name: Setup Golang
3737
uses: actions/setup-go@v1
3838
with:
39-
go-version: '1.19'
39+
go-version: '1.21'
4040
- name: Restore go build cache
4141
uses: actions/cache@v1
4242
with:
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v2
54+
uses: actions/checkout@v4
5555
- name: Run golangci-lint
5656
uses: golangci/golangci-lint-action@v3
5757
with:
@@ -66,15 +66,15 @@ jobs:
6666
- name: Create checkout directory
6767
run: mkdir -p ~/go/src/github.com/gitpod-io
6868
- name: Checkout code
69-
uses: actions/checkout@v2
69+
uses: actions/checkout@v4
7070
with:
7171
fetch-depth: 10
7272
- name: Create symlink in GOPATH
7373
run: ln -s $(pwd) ~/go/src/github.com/gitpod-io/leeway
7474
- name: Setup Golang
7575
uses: actions/setup-go@v1
7676
with:
77-
go-version: '1.19'
77+
go-version: '1.21'
7878
- name: Restore go build cache
7979
uses: actions/cache@v1
8080
with:
@@ -100,15 +100,15 @@ jobs:
100100
- name: Create checkout directory
101101
run: mkdir -p ~/go/src/github.com/gitpod-io
102102
- name: Checkout code
103-
uses: actions/checkout@v2
103+
uses: actions/checkout@v4
104104
with:
105105
fetch-depth: 10
106106
- name: Create symlink in GOPATH
107107
run: ln -s $(pwd) ~/go/src/github.com/gitpod-io/leeway
108108
- name: Setup Golang
109109
uses: actions/setup-go@v1
110110
with:
111-
go-version: '1.19'
111+
go-version: '1.21'
112112
- name: Restore go build cache
113113
uses: actions/cache@v1
114114
with:
@@ -127,7 +127,7 @@ jobs:
127127
- test-go
128128
steps:
129129
- name: Checkout code
130-
uses: actions/checkout@v2
130+
uses: actions/checkout@v4
131131
with:
132132
fetch-depth: 10
133133
- name: Create test-results directory

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616
- name: Setup Golang
17-
uses: actions/setup-go@v3
17+
uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.19"
19+
go-version: "1.21"
2020
- name: Docker Login
2121
uses: docker/login-action@v1
2222
with:

0 commit comments

Comments
 (0)