Skip to content

Commit

Permalink
Update parent reference + update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
kauwai committed Jun 10, 2024
1 parent 76b0b93 commit 952646f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-clojars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
Expand All @@ -31,7 +31,7 @@ jobs:
id: check_changes
run: |
changed_libs=()
for dir in $(find . -name 'project.clj' -exec dirname {} \;); do
for dir in $(find . -name 'project.clj' -not -path "./parent-project/*" -exec dirname {} \;); do
if git diff --quiet HEAD~1 HEAD -- $dir; then
echo "No changes in $dir"
else
Expand Down
2 changes: 1 addition & 1 deletion exceptions/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:description "Exception utilities"
:url "https://github.com/klauswuestefeld/simple-clj/tree/master/exceptions"

:parent ["../_parent-project" "2024.06.07"]
:parent [parent-project "2024.06.07" :relative-path "../_parent-project"]

:license {:name "BSD 3-Clause"
:url "https://github.com/klauswuestefeld/simple-clj/blob/master/LICENSE"}
Expand Down

0 comments on commit 952646f

Please sign in to comment.