Skip to content

Commit e71137f

Browse files
authored
Merge pull request #141 from striezel-stash/gh-action-update
update actions/checkout in GitHub Actions to v3
2 parents f1c69ac + 3aaf22e commit e71137f

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

.github/workflows/alpine.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ubuntu-build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- name: start docker
1111
run: |
1212
docker run -w /src -dit --name alpine -v $PWD:/src alpine:latest
@@ -24,4 +24,4 @@ jobs:
2424
./alpine.sh cmake --build build_for_alpine
2525
- name: test
2626
run: |
27-
./alpine.sh bash -c "cd build_for_alpine && ctest -R basictest"
27+
./alpine.sh bash -c "cd build_for_alpine && ctest -R basictest"

.github/workflows/amalgamate-ubuntu20.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- {cxx: , arch: } # default=gcc9
1515
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc9
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Compile with amalgamation
1919
run: |
2020
mkdir build &&

.github/workflows/msys2-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
CMAKE_GENERATOR: Ninja
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: msys2/setup-msys2@v2
2828
with:
2929
update: true

.github/workflows/msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
CMAKE_GENERATOR: Ninja
3030

3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
- uses: msys2/setup-msys2@v2
3434
with:
3535
update: true

.github/workflows/ubuntu18.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- {cxx: , arch: } # default=gcc7
1616
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc7
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Setup cmake
2020
uses: jwlawson/[email protected]
2121
with:

.github/workflows/ubuntu20-cxx20.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Use cmake
1313
run: |
1414
mkdir build &&

.github/workflows/ubuntu20.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- {cxx: , arch: } # default=gcc9
1515
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc9
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Use cmake
1919
run: |
2020
mkdir build &&

.github/workflows/vs17-arm-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- {arch: ARM64}
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Use cmake
1919
run: |
2020
cmake -A ${{ matrix.arch }} -DCMAKE_CROSSCOMPILING=1 -DFASTFLOAT_TEST=ON -B build &&
21-
cmake --build build --verbose
21+
cmake --build build --verbose

.github/workflows/vs17-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- {gen: Visual Studio 17 2022, arch: x64}
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Use cmake
1919
run: |
2020
mkdir build &&
@@ -26,4 +26,4 @@ jobs:
2626
cd ../tests/installation_tests/find &&
2727
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
2828
cd ../../issue72_installation &&
29-
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
29+
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose

.github/workflows/vs17-clang-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- {gen: Visual Studio 17 2022, arch: x64}
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Configure
1919
run: |
2020
mkdir build

0 commit comments

Comments
 (0)