File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,23 @@ jobs:
15
15
16
16
steps :
17
17
- name : Checkout repository
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
20
20
- name : Log in to the Container registry
21
- uses : docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
21
+ uses : docker/login-action@v3
22
22
with :
23
23
registry : ${{ env.REGISTRY }}
24
24
username : ${{ github.actor }}
25
25
password : ${{ secrets.GITHUB_TOKEN }}
26
26
27
27
- name : Extract metadata (tags, labels) for Docker
28
28
id : meta
29
- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
29
+ uses : docker/metadata-action@v5
30
30
with :
31
31
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
32
32
33
33
- name : Build and push Docker image
34
- uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
34
+ uses : docker/build-push-action@v5
35
35
with :
36
36
context : .
37
37
push : true
Original file line number Diff line number Diff line change 4
4
format :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v3
8
- - uses : actions/setup-go@v3
7
+ - uses : actions/checkout@v4
8
+ - uses : actions/setup-go@v4
9
9
with :
10
10
go-version : " 1.21"
11
11
- run : if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
Original file line number Diff line number Diff line change 4
4
lint :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v3
8
- - uses : actions/setup-go@v3
7
+ - uses : actions/checkout@v4
8
+ - uses : actions/setup-go@v4
9
9
with :
10
10
go-version : " 1.21.x"
11
11
-
run :
" go install honnef.co/go/tools/cmd/[email protected] "
Original file line number Diff line number Diff line change 13
13
runs-on : ${{ matrix.os }}
14
14
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
18
18
- uses : ikalnytskyi/action-setup-postgres@v4
19
19
id : postgres
You can’t perform that action at this time.
0 commit comments