Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/maven/commons-io-commons-io-2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ja-fra authored Oct 3, 2023
2 parents a83f396 + a74a6c3 commit 4ec709f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/maven-build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:
cache: maven
- name: Detect Version
id: version
run: VERSION=$(mvn -B -q -N exec:exec -Dexec.executable=echo -Dexec.args='${project.version}')
echo "::set-output name=version::${VERSION}"
run: mvn -B -q -N exec:exec -Dexec.executable=echo -Dexec.args='version=${project.version}' >>"$GITHUB_OUTPUT"

build:
name: Build and Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void testStateCheck() {
assertTrue("Gate is closed", gate.isClosed());
}

@Test(timeout = 5L)
@Test(timeout = 100L)
public void testOpenGate() throws InterruptedException {
final Gate gate = new Gate(false);

Expand Down

0 comments on commit 4ec709f

Please sign in to comment.