Skip to content

Bump org.eclipse.jgit:org.eclipse.jgit from 6.0.0.202111291000-r to 6.6.1.202309021850-r #39

Bump org.eclipse.jgit:org.eclipse.jgit from 6.0.0.202111291000-r to 6.6.1.202309021850-r

Bump org.eclipse.jgit:org.eclipse.jgit from 6.0.0.202111291000-r to 6.6.1.202309021850-r #39

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Build
on:
push:
pull_request:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
uses: actions/setup-java@v2
with:
java-version: '14'
distribution: 'adopt'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: segator/proxylive
flavor: |
latest=auto
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}.x
type=semver,pattern=v{{major}}.x
type=sha
- name: Docker Build & Push
uses: docker/build-push-action@v2
with:
push: ${{ github.event_name != 'pull_request' }}
images: segator/proxylive
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}