Skip to content

Commit 2280595

Browse files
committed
Update CI actions & installs to latest versions
1 parent 99f5b4c commit 2280595

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
test:
77

88
runs-on: ubuntu-latest
9-
9+
1010
steps:
1111
- name: Install babashka
1212
uses: DeLaGuardo/[email protected]
1313
with:
14-
bb: 1.0.168
14+
bb: 1.3.190
1515
- uses: actions/checkout@v3
1616
- name: Check for stale Dockerfiles
1717
run: |

.github/workflows/official-images-pr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1313
steps:
1414
- name: Install babashka
15-
uses: DeLaGuardo/setup-clojure@10.1
15+
uses: DeLaGuardo/setup-clojure@12.5
1616
with:
17-
bb: 1.3.176
17+
bb: 1.3.190
1818
- name: Checkout code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
- name: Generate manifest
2121
run: bb run manifest target/docker.manifest
2222
- name: Upload manifest artifact
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: manifest
2626
path: target/docker.manifest
@@ -32,12 +32,12 @@ jobs:
3232
diff: ${{ steps.manifest-diff.outputs.diff }}
3333
steps:
3434
- name: Checkout docker-library/official-images repo
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
repository: docker-library/official-images
3838
path: official-images
3939
- name: Download manifest artifact
40-
uses: actions/download-artifact@v3
40+
uses: actions/download-artifact@v4
4141
with:
4242
name: manifest
4343
- name: Compare manifest files
@@ -50,24 +50,24 @@ jobs:
5050
if: contains(needs.compare-manifests.outputs.diff, 'differ')
5151
steps:
5252
- name: Download manifest artifact
53-
uses: actions/download-artifact@v3
53+
uses: actions/download-artifact@v4
5454
with:
5555
name: manifest
5656
- name: Checkout docker-library/official-images repo
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
with:
5959
repository: docker-library/official-images
6060
path: official-images
6161
- name: Copy manifest into official-images library
6262
run: cp docker.manifest official-images/library/clojure
6363
- name: Get user email
6464
id: email
65-
uses: evvanErb/get-github-email-by-username-action@v1.25
65+
uses: evvanErb/get-github-email-by-username-action@v2.0
6666
with:
6767
github-username: ${{ github.actor }}
6868
token: ${{ secrets.API_TOKEN_GITHUB }}
6969
- name: Open official-images pull request
70-
uses: peter-evans/create-pull-request@v5
70+
uses: peter-evans/create-pull-request@v6
7171
with:
7272
token: ${{ secrets.API_TOKEN_GITHUB }}
7373
path: official-images

0 commit comments

Comments
 (0)