Skip to content

Commit

Permalink
fix ownership after checkout, see actions/checkout#1049
Browse files Browse the repository at this point in the history
  • Loading branch information
LeroyR committed Mar 6, 2024
1 parent 955022c commit 8db84d5
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ jobs:
- uses: actions/checkout@v4
with:
ref: gh-pages

- name: Take ownership of the checkout directory (Git CVE-2022-24765)
run: chown --recursive --reference=/ .

- name: Allow for file ownership conflicts with Docker and GitHub Actions
run: git config --global --add safe.directory '*'

- name: Download organization
uses: actions/download-artifact@v4
with:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
container: texlive/texlive:TL2022-historic
steps:
- uses: actions/checkout@v4

- name: Take ownership of the checkout directory (Git CVE-2022-24765)
run: chown --recursive --reference=/ .

- name: Allow for file ownership conflicts with Docker and GitHub Actions
run: git config --global --add safe.directory '*'

- name: LaTeX compilation Organization
run:
TERM=xterm make organization
Expand Down
23 changes: 23 additions & 0 deletions sdfsdf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
commit 9b199934c8cadf24b26bd8daace77512f05c471c (HEAD -> master, origin/fix_missing_refs, leroy/master, fix_missing_refs)
Author: Leroy Rügemer <lruegeme@techfak.uni-bielefeld.de>
Date: Wed Mar 6 11:46:35 2024 +0100

fix missing refs

- added bonus/penalties section to rulebook
- removed some ref for now as
wed need to add start_signal but that refers inspection which refers robot sections
dont know what to move where so removed the refs for now

commit e6cea23ef56fbdfff13fdc4a6bd2ac8df3761212
Author: Leroy Rügemer <lruegeme@techfak.uni-bielefeld.de>
Date: Wed Mar 6 10:14:07 2024 +0100

build roadmap document, move files around

commit 477e714bf0612e1bce8b9ac7a6d19095a76a11eb
Author: Leroy Rügemer <lruegeme@techfak.uni-bielefeld.de>
Date: Tue Mar 5 15:16:30 2024 +0100

Cleanup makefiles

0 comments on commit 8db84d5

Please sign in to comment.