Skip to content

chore(deps): update plugin org.springframework.boot to v3.5.7 (#73) #108

chore(deps): update plugin org.springframework.boot to v3.5.7 (#73)

chore(deps): update plugin org.springframework.boot to v3.5.7 (#73) #108

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
PACT_BROKER_BASE_URL: https://testdemo.pactflow.io
PACT_BROKER_HOST: testdemo.pactflow.io
PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }}
PACT_BROKER_PUBLISH_VERIFICATION_RESULTS: true
GIT_COMMIT: ${{ github.sha }}
GITHUB_REF: ${{ github.ref }}
SEND_TEST_EVENTS: false
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Set up JDK 17
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5
with:
distribution: 'zulu'
java-version: '17'
- name: Test
run: GIT_BRANCH=${GITHUB_REF:11} make test
# Runs on branches as well, so we know the status of our PRs
can-i-deploy:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- run: docker pull pactfoundation/pact-cli:latest
- name: Can I deploy?
run: GIT_BRANCH=${GITHUB_REF:11} make can_i_deploy
# Only deploy from master
deploy:
runs-on: ubuntu-latest
needs: can-i-deploy
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GITHUB_REF:11} make deploy
if: github.ref == 'refs/heads/master'