File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,23 @@ jobs:
16
16
17
17
steps :
18
18
- name : Checkout repository
19
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Log in to the Container registry
22
- uses : docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
22
+ uses : docker/login-action@v3
23
23
with :
24
24
registry : ${{ env.REGISTRY }}
25
25
username : ${{ github.actor }}
26
26
password : ${{ secrets.GITHUB_TOKEN }}
27
27
28
28
- name : Extract metadata (tags, labels) for Docker
29
29
id : meta
30
- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
30
+ uses : docker/metadata-action@v5
31
31
with :
32
32
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
33
33
34
34
- name : Build and push Docker image
35
- uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
35
+ uses : docker/build-push-action@v5
36
36
with :
37
37
context : .
38
38
file : docker/Dockerfile.builder
Original file line number Diff line number Diff line change @@ -12,18 +12,18 @@ jobs:
12
12
name : fcode-utils for x86_64
13
13
steps :
14
14
- name : Checkout fcode-utils
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Log in to the Container registry
18
- uses : docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
18
+ uses : docker/login-action@v3
19
19
with :
20
20
registry : ${{ env.REGISTRY }}
21
21
username : ${{ github.actor }}
22
22
password : ${{ secrets.GITHUB_TOKEN }}
23
23
24
24
- name : Extract metadata (tags, labels) for Docker
25
25
id : meta
26
- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
26
+ uses : docker/metadata-action@v5
27
27
with :
28
28
images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
29
29
@@ -38,14 +38,14 @@ jobs:
38
38
args : " bash -c \" cp -R localvalues build-$(uname -m)\" "
39
39
40
40
- name : Store x86_64 artifacts
41
- uses : actions/upload-artifact@v2
41
+ uses : actions/upload-artifact@v4
42
42
with :
43
43
name : fcode-utils-x86_64
44
44
path : |
45
45
build-x86_64
46
46
47
47
- name : Build and push Docker image
48
- uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
48
+ uses : docker/build-push-action@v5
49
49
with :
50
50
context : .
51
51
file : docker/Dockerfile
Original file line number Diff line number Diff line change 1
- FROM debian:11.2
1
+ FROM debian:12.5
2
2
3
3
COPY build-x86_64/bin/* /usr/bin
Original file line number Diff line number Diff line change 1
- FROM debian :11.2
1
+ FROM debian :12.5
2
2
3
3
RUN apt -get -y update && \
4
4
apt -get -y install build -essential git
You can’t perform that action at this time.
0 commit comments