Skip to content

Commit

Permalink
ci: update ci version
Browse files Browse the repository at this point in the history
  • Loading branch information
jimchen5209 committed Aug 15, 2024
1 parent bb3dcf1 commit a7c3d01
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand All @@ -21,7 +21,7 @@ jobs:
caches-
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
Expand All @@ -30,7 +30,7 @@ jobs:
run: ./gradlew build

- name: Upload-Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifact
path: build/libs/
Expand All @@ -51,9 +51,9 @@ jobs:
echo IMAGE_NAME=${GITHUB_REPOSITORY,,} >>${GITHUB_ENV}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: build/libs/
Expand All @@ -62,7 +62,7 @@ jobs:
run: cp build/libs/galaxy-proxy-1.0-SNAPSHOT.jar docker/plugins

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down

0 comments on commit a7c3d01

Please sign in to comment.