Skip to content

Commit

Permalink
Merge pull request #40 from levigo/fix/INF-57_migrate_node-20-github
Browse files Browse the repository at this point in the history
fix/INF-57_migrate_node-20-github
  • Loading branch information
benjaminalbanese authored Jun 27, 2024
2 parents f43f731 + 41c0c38 commit d7ad502
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

## compute the string of the next version
- name: Bump version and create tag
id: semanticversion
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
release_branches: master
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -55,7 +55,7 @@ jobs:
## Configure JDK
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '8'
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
mvn ${{ env.MAVEN_CLI_OPTS }} versions:set -DnewVersion=${{ env.NEW_VERSION }}
- name: Perform build with xvfb
uses: coactions/setup-xvfb@v1
uses: coactions/setup-xvfb@90473c3ebc69533a1a6e0505c36511b69c8c3135
with:
run: mvn -B verify -Dmaven.test.failure.ignore=true

Expand All @@ -109,7 +109,7 @@ jobs:
## Create Release
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: Release ${{ env.NEW_VERSION }}
tag_name: ${{ steps.semanticversion.outputs.new_tag }}
Expand All @@ -132,4 +132,4 @@ jobs:
text: Released new version `${{ env.NEW_VERSION }}` of *${{ github.repository }}*
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()
if: failure()
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:


steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

## Configure JDK
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
## Build with maven
- name: Perform build
uses: coactions/setup-xvfb@v1
uses: coactions/setup-xvfb@90473c3ebc69533a1a6e0505c36511b69c8c3135
with:
run: mvn ${{ env.MAVEN_CLI_OPTS }} verify -Dmaven.test.failure.ignore=true

Expand All @@ -87,4 +87,4 @@ jobs:
text: ${{ github.workflow }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()
if: ${{ failure() &&github.actor != 'dependabot[bot]' }}

0 comments on commit d7ad502

Please sign in to comment.