Skip to content

Commit 000a90c

Browse files
committed
Revert "Fix git dubious directory warning more cleanly (actions/checkout#766)"
This reverts commit 43a0c27.
1 parent 43a0c27 commit 000a90c

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/continuous-deployment-workflow.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v1
1414

15-
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
16-
1715
- name: Setup java
1816
uses: actions/setup-java@v3
1917
with:
@@ -38,6 +36,9 @@ jobs:
3836
key: cljdeps-${{ hashFiles('deps.edn') }}-${{ hashFiles ('package.json') }}-${{ hashFiles ('package-lock.json') }}
3937
restore-keys: cljdeps-
4038

39+
- name: Fix git dubious directory ownership error
40+
run: git config --global --add safe.directory /__w/re-com/re-com
41+
4142
- run: bb release-demo
4243

4344
- name: Slack notification

.github/workflows/continuous-integration-workflow.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04
1111

1212
steps:
13-
- uses: actions/checkout@v5
14-
15-
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
13+
- uses: actions/checkout@v1
1614

1715
- name: Setup java
1816
uses: actions/setup-java@v3
@@ -38,6 +36,9 @@ jobs:
3836
key: cljdeps-${{ hashFiles('deps.edn') }}-${{ hashFiles ('package.json') }}-${{ hashFiles ('package-lock.json') }}
3937
restore-keys: cljdeps-
4038

39+
- name: Fix git dubious directory ownership error
40+
run: git config --global --add safe.directory /__w/re-com/re-com
41+
4142
- run: bb test
4243

4344
- run: bb release-demo

.github/workflows/docs-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CLOJARS_TOKEN: ${{ secrets.CLOJARS_TOKEN }}
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v1
2020

2121
- name: Setup java
2222
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)