Bump org.redisson:redisson from 3.12.0 to 3.22.0 in /javayh-dependencies/javayh-redis-starter #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name : test—actions | |
on: | |
push: | |
branches: [main,master] | |
pull_request: | |
branches: [main,master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java JDK | |
uses: actions/checkout@v2 | |
with: | |
java-version: '14' | |
distribution: 'adopt' | |
- name: Setup Maven | |
# You may pin to the exact commit or the version. | |
# uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f | |
uses: stCarolas/[email protected] | |
- name: Build package | |
run: mvn -DskipTests=true package -P | |
- name: Login Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
- name: Push image | |
run: | |
docker push ghcr.io/shaowenchen/documents:latest |