@@ -12,15 +12,15 @@ jobs:
12
12
if : ${{ github.event.workflow_run.conclusion == 'success' }}
13
13
steps :
14
14
- name : Install babashka
15
- uses : DeLaGuardo/setup-clojure@10.1
15
+ uses : DeLaGuardo/setup-clojure@12.5
16
16
with :
17
- bb : 1.3.176
17
+ bb : 1.3.190
18
18
- name : Checkout code
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
- name : Generate manifest
21
21
run : bb run manifest target/docker.manifest
22
22
- name : Upload manifest artifact
23
- uses : actions/upload-artifact@v3
23
+ uses : actions/upload-artifact@v4
24
24
with :
25
25
name : manifest
26
26
path : target/docker.manifest
@@ -32,12 +32,12 @@ jobs:
32
32
diff : ${{ steps.manifest-diff.outputs.diff }}
33
33
steps :
34
34
- name : Checkout docker-library/official-images repo
35
- uses : actions/checkout@v3
35
+ uses : actions/checkout@v4
36
36
with :
37
37
repository : docker-library/official-images
38
38
path : official-images
39
39
- name : Download manifest artifact
40
- uses : actions/download-artifact@v3
40
+ uses : actions/download-artifact@v4
41
41
with :
42
42
name : manifest
43
43
- name : Compare manifest files
@@ -50,24 +50,24 @@ jobs:
50
50
if : contains(needs.compare-manifests.outputs.diff, 'differ')
51
51
steps :
52
52
- name : Download manifest artifact
53
- uses : actions/download-artifact@v3
53
+ uses : actions/download-artifact@v4
54
54
with :
55
55
name : manifest
56
56
- name : Checkout docker-library/official-images repo
57
- uses : actions/checkout@v3
57
+ uses : actions/checkout@v4
58
58
with :
59
59
repository : docker-library/official-images
60
60
path : official-images
61
61
- name : Copy manifest into official-images library
62
62
run : cp docker.manifest official-images/library/clojure
63
63
- name : Get user email
64
64
id : email
65
- uses : evvanErb/get-github-email-by-username-action@v1.25
65
+ uses : evvanErb/get-github-email-by-username-action@v2.0
66
66
with :
67
67
github-username : ${{ github.actor }}
68
68
token : ${{ secrets.API_TOKEN_GITHUB }}
69
69
- name : Open official-images pull request
70
- uses : peter-evans/create-pull-request@v5
70
+ uses : peter-evans/create-pull-request@v6
71
71
with :
72
72
token : ${{ secrets.API_TOKEN_GITHUB }}
73
73
path : official-images
0 commit comments