Sfoglia il codice sorgente

missed updates for git ci

missed updating the checkout action for git ci
marauder2k7 1 anno fa
parent
commit
29190c3d77

+ 4 - 1
.github/workflows/build-linux-gcc.yml

@@ -30,12 +30,15 @@ jobs:
                 }
 
         steps:
-            - uses: actions/checkout@v3
+            - uses: actions/checkout@v4
             - name: Print env
               run: |
                 echo github.event.action: ${{ github.event.action }}
                 echo github.event_name: ${{ github.event_name }}
 
+            - name: Run GIT Init
+              run: git init
+
             - name: Setup GCC problem matcher
               uses: ammaraskar/gcc-problem-matcher@master
 

+ 4 - 1
.github/workflows/build-macos-clang.yml

@@ -30,12 +30,15 @@ jobs:
                 }
 
         steps:
-            - uses: actions/checkout@v3
+            - uses: actions/checkout@v4
             - name: Print env
               run: |
                 echo github.event.action: ${{ github.event.action }}
                 echo github.event_name: ${{ github.event_name }}
 
+            - name: Run GIT Init
+              run: git init
+
             - name: Setup GCC problem matcher
               uses: ammaraskar/gcc-problem-matcher@master
 

+ 5 - 2
.github/workflows/build-windows-msvc.yml

@@ -26,13 +26,16 @@ jobs:
                 }
                 
         steps:
-            - uses: actions/checkout@v3
-            - uses: ilammy/msvc-dev-cmd@v1
+            - uses: actions/checkout@v4
+            - uses: ilammy/msvc-dev-cmd@v1.13.0
             - name: Print env
               run: |
                 echo github.event.action: ${{ github.event.action }}
                 echo github.event_name: ${{ github.event_name }}
 
+            - name: Run GIT Init
+              run: git init
+
             - name: Setup MSVC problem matcher
               uses: ammaraskar/msvc-problem-matcher@master