missed updates for git ci

missed updating the checkout action for git ci
This commit is contained in:
marauder2k7 2024-04-28 23:14:10 +01:00
parent 2687f8fdd3
commit 29190c3d77
3 changed files with 13 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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