Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions workflows to v3 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored May 23, 2023
1 parent 3dfc5b5 commit 08c6064
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- {compiler: gcc-12}
- {compiler: clang}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use cmake (debug)
run: |
mkdir builddebug &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- {compiler: clang}
- {compiler: clang-11}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use cmake (debug)
run: |
mkdir builddebug &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu22.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- {compiler: clang-13}
- {compiler: clang}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use cmake (debug)
run: |
mkdir builddebug &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- {gen: Visual Studio 17 2022, mode: -T ClangCL, arch: x64, static: OFF}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Configure
run: |
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} "${{matrix.mode}}" -DSIMDJSON_DEVELOPER_MODE=ON -DSIMDJSON_COMPETITION=OFF -DSIMDJSON_BUILD_STATIC=${{matrix.static}} -DSTREAMVBYTE_ENABLE_EXAMPLES=ON -DSTREAMVBYTE_ENABLE_TESTS=ON -DSTREAMVBYTE_WALL=ON -DSTREAMVBYTE_WERROR=ON -B build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vs16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- {gen: Visual Studio 16 2019, mode: -T ClangCL, arch: x64, static: OFF}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Configure
run: |
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} "${{matrix.mode}}" -DSIMDJSON_DEVELOPER_MODE=ON -DSIMDJSON_COMPETITION=OFF -DSIMDJSON_BUILD_STATIC=${{matrix.static}} -DSTREAMVBYTE_ENABLE_EXAMPLES=ON -DSTREAMVBYTE_ENABLE_TESTS=ON -DSTREAMVBYTE_WALL=ON -DSTREAMVBYTE_WERROR=ON -B build
Expand Down

0 comments on commit 08c6064

Please sign in to comment.