Skip to content

Commit

Permalink
#580: Fix shell script in automatic dependency update workflow (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Jun 5, 2024
1 parent c9ebaae commit fb7cbf1
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependencies_update.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 59 additions & 0 deletions doc/changes/changes_4.3.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Project Keeper 4.3.3, released 2024-06-05

Code name: Fix bug in automatic dependency update workflow

## Summary

This release fixes a bug in a shell script of the automatic dependency update workflow that caused the workflow to fail with error message

```
line 17: unexpected EOF while looking for matching `''
```

## Bugfixes

* #580: Fixed bug in automatic dependency update workflow

## Dependency Updates

### Project Keeper Core

#### Compile Dependency Updates

* Updated `com.exasol:project-keeper-shared-model-classes:4.3.2` to `4.3.3`

#### Runtime Dependency Updates

* Updated `com.exasol:project-keeper-java-project-crawler:4.3.2` to `4.3.3`

#### Test Dependency Updates

* Updated `com.exasol:project-keeper-shared-test-setup:4.3.2` to `4.3.3`

### Project Keeper Command Line Interface

#### Compile Dependency Updates

* Updated `com.exasol:project-keeper-core:4.3.2` to `4.3.3`

#### Test Dependency Updates

* Updated `com.exasol:project-keeper-shared-test-setup:4.3.2` to `4.3.3`

### Project Keeper Maven Plugin

#### Compile Dependency Updates

* Updated `com.exasol:project-keeper-core:4.3.2` to `4.3.3`

### Project Keeper Java Project Crawler

#### Compile Dependency Updates

* Updated `com.exasol:project-keeper-shared-model-classes:4.3.2` to `4.3.3`

### Project Keeper Shared Test Setup

#### Compile Dependency Updates

* Updated `com.exasol:project-keeper-shared-model-classes:4.3.2` to `4.3.3`
2 changes: 1 addition & 1 deletion parent-pom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</repository>
</distributionManagement>
<properties>
<revision>4.3.2</revision>
<revision>4.3.3</revision>
<!-- Integration test ProjectKeeperMojoIT starts a Maven build which requires Java 17. -->
<java.version>17</java.version>
<maven.version>3.9.7</maven.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
echo >> "$GITHUB_OUTPUT"
echo '# ⚠️ Notes ⚠️' >> "$GITHUB_OUTPUT"
echo '## Run PK fix manually' >> "$GITHUB_OUTPUT"
echo 'Due to restrictions workflow `dependencies_update.yml` can't update other workflows, see https://github.com/exasol/project-keeper/issues/578 for details.' >> "$GITHUB_OUTPUT"
echo 'Due to restrictions workflow `dependencies_update.yml` cannot update other workflows, see https://github.com/exasol/project-keeper/issues/578 for details.' >> "$GITHUB_OUTPUT"
echo 'Please checkout this PR locally and run `mvn com.exasol:project-keeper-maven-plugin:fix --projects .`' >> "$GITHUB_OUTPUT"
echo '## This PR does not trigger CI workflows' >> "$GITHUB_OUTPUT"
echo 'Please click the **Close pull request** button and then **Reopen pull request** to trigger running checks.' >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit fb7cbf1

Please sign in to comment.