You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
46
+
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v3.0.2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
Copy file name to clipboardExpand all lines: .travis/.github/workflows/indigo.yml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,18 @@ jobs:
14
14
container: jskrobotics/ros-ubuntu:14.04
15
15
16
16
steps:
17
-
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
17
+
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v3.0.2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
- name: work around permission issue # https://github.com/actions/checkout/issues/760#issuecomment-1097501613
20
+
run: |
21
+
set -x
22
+
export USER=$(whoami)
23
+
git config --global --add safe.directory $GITHUB_WORKSPACE || echo "OK" # Show 'could not lock config file /github/home/.gitconfig: Permission denied', but it is ok
Copy file name to clipboardExpand all lines: .travis/.github/workflows/kinetic.yml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,18 @@ jobs:
14
14
container: jskrobotics/ros-ubuntu:16.04
15
15
16
16
steps:
17
-
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
17
+
- name: Install latest git ( use sudo for ros-ubuntu, remove sudo for ubuntu container), checkout@v3.0.2 uses REST API for git<2.18, which removes .git folder and does not checkout .travis submodules
- name: work around permission issue # https://github.com/actions/checkout/issues/760#issuecomment-1097501613
20
+
run: |
21
+
set -x
22
+
export USER=$(whoami)
23
+
git config --global --add safe.directory $GITHUB_WORKSPACE || echo "OK" # Show 'could not lock config file /github/home/.gitconfig: Permission denied', but it is ok
- name: work around permission issue # https://github.com/actions/checkout/issues/760#issuecomment-1097501613
373
+
run: |
374
+
set -x
375
+
export USER=$(whoami)
376
+
git config --global --add safe.directory $GITHUB_WORKSPACE || echo "OK" # Show 'could not lock config file /github/home/.gitconfig: Permission denied', but it is ok
0 commit comments