Skip to content

Commit

Permalink
workflows: Use actions/checkout v4
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 committed Aug 1, 2024
1 parent 15e901c commit aaee1bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: [windows-latest, windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build on ${{ matrix.os }} with vs-2019
run: |
.\scripts\win_build.bat
Expand All @@ -32,7 +32,7 @@ jobs:
matrix:
os: [windows-latest, windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get dependencies w/ chocolatey
uses: crazy-max/ghaction-chocolatey@v2
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
yum install -y cmake3
shell: bash

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run compilation
run: |
Expand All @@ -86,7 +86,7 @@ jobs:
apt-get install -y build-essential cmake make
shell: bash

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run compilation
run: |
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
compiler: [ gcc, clang ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build on ${{ matrix.os }} with ${{ matrix.compiler }}
run: |
echo "CC = $CC, CXX = $CXX"
Expand All @@ -157,7 +157,7 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand Down

0 comments on commit aaee1bc

Please sign in to comment.