Skip to content

Commit ae61d7e

Browse files
committed
Fix docker publishing
1 parent e2c68a7 commit ae61d7e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ jobs:
1616
contents: read
1717
packages: write
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: docker/login-action@v2
19+
- uses: actions/checkout@v4
20+
- uses: docker/login-action@v3
2121
with:
2222
registry: ${{ env.REGISTRY }}
2323
username: udashframework
2424
password: ${{ secrets.GITHUB_TOKEN }}
25-
- uses: actions/setup-java@v3
25+
- uses: actions/setup-java@v4
2626
with:
2727
distribution: temurin
28-
java-version: 11
28+
java-version: 17
29+
cache: sbt
2930
- name: Get version
3031
id: get_tag_name
3132
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)