Skip to content

Commit

Permalink
v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leonchen83 committed Feb 1, 2023
1 parent def1bb5 commit a3a18b6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: '6.x'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
- name: Build with Maven
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build Native Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ayltai/setup-graalvm@v1
with:
java-version: 11
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
- name: Build with Maven
Expand Down Expand Up @@ -49,40 +49,40 @@ jobs:
asset_name: redis-rdb-cli-release.zip
asset_content_type: application/zip
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build and Push latest
id: latest
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest
- name: Build and Push ${{ env.RELEASE_TAG }}
id: tag
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:${{ env.RELEASE_TAG }}
- name: Build and Push latest-native
id: latest-native
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./DockerfileNative
push: true
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest-native
- name: Build and Push ${{ env.RELEASE_TAG }}-native
id: tag-native
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./
file: ./DockerfileNative
Expand Down

0 comments on commit a3a18b6

Please sign in to comment.