diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-11-08 18:00:23 +1100 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2022-11-08 12:54:43 +0100 |
commit | 03fe6d2904a948614e3c25a00e52595268ef1ab7 (patch) | |
tree | 17f23cda2c893b0f46681967dd836d0b604d7265 /.github | |
parent | 0107fed58c7ee935574dad918380722d8f1c9c7e (diff) | |
download | portable-03fe6d2904a948614e3c25a00e52595268ef1ab7.tar.gz portable-03fe6d2904a948614e3c25a00e52595268ef1ab7.tar.bz2 portable-03fe6d2904a948614e3c25a00e52595268ef1ab7.zip |
Update checkout action to current version.
checkout v2 uses node.js v12 which is has been recently deprecated by
github so switch to using the one on the main branch.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/android_test.yml | 4 | ||||
-rw-r--r-- | .github/workflows/coverity.yml | 2 | ||||
-rw-r--r-- | .github/workflows/cross_test.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux_test.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux_test_asan.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos_test.yml | 2 | ||||
-rw-r--r-- | .github/workflows/regress.yml | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/android_test.yml b/.github/workflows/android_test.yml index 6ce002b..4ecbfac 100644 --- a/.github/workflows/android_test.yml +++ b/.github/workflows/android_test.yml | |||
@@ -12,7 +12,7 @@ jobs: | |||
12 | MAX_NAL: 28 | 12 | MAX_NAL: 28 |
13 | name: Android 8.x 9 | 13 | name: Android 8.x 9 |
14 | steps: | 14 | steps: |
15 | - uses: actions/checkout@v2 | 15 | - uses: actions/checkout@main |
16 | - name: Run CI script | 16 | - name: Run CI script |
17 | run: ./scripts/test | 17 | run: ./scripts/test |
18 | 18 | ||
@@ -25,6 +25,6 @@ jobs: | |||
25 | MAX_NAL: 30 | 25 | MAX_NAL: 30 |
26 | name: Android 10 11 | 26 | name: Android 10 11 |
27 | steps: | 27 | steps: |
28 | - uses: actions/checkout@v2 | 28 | - uses: actions/checkout@main |
29 | - name: Run CI script | 29 | - name: Run CI script |
30 | run: ./scripts/test | 30 | run: ./scripts/test |
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 40e7a07..444cc0b 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml | |||
@@ -15,7 +15,7 @@ jobs: | |||
15 | COVERITY_SCAN_BUILD_COMMAND_PREPEND: "./autogen.sh && ./configure && make dist && tar zxf libressl-*.tar.gz && rm libressl-*.tar.gz && cd libressl-* && mkdir build-static && mkdir build-shared && cmake -GNinja -DBUILD_SHARED_LIBS=ON .." | 15 | COVERITY_SCAN_BUILD_COMMAND_PREPEND: "./autogen.sh && ./configure && make dist && tar zxf libressl-*.tar.gz && rm libressl-*.tar.gz && cd libressl-* && mkdir build-static && mkdir build-shared && cmake -GNinja -DBUILD_SHARED_LIBS=ON .." |
16 | COVERITY_SCAN_BUILD_COMMAND: "ninja" | 16 | COVERITY_SCAN_BUILD_COMMAND: "ninja" |
17 | steps: | 17 | steps: |
18 | - uses: actions/checkout@v2 | 18 | - uses: actions/checkout@main |
19 | - name: Install apt dependencies | 19 | - name: Install apt dependencies |
20 | run: | | 20 | run: | |
21 | sudo apt-get update | 21 | sudo apt-get update |
diff --git a/.github/workflows/cross_test.yml b/.github/workflows/cross_test.yml index c5b6b25..af09309 100644 --- a/.github/workflows/cross_test.yml +++ b/.github/workflows/cross_test.yml | |||
@@ -15,6 +15,6 @@ jobs: | |||
15 | ARCH: ${{ matrix.arch }} | 15 | ARCH: ${{ matrix.arch }} |
16 | name: ${{ matrix.arch }} - ${{ matrix.os }} | 16 | name: ${{ matrix.arch }} - ${{ matrix.os }} |
17 | steps: | 17 | steps: |
18 | - uses: actions/checkout@v2 | 18 | - uses: actions/checkout@main |
19 | - name: Run CI script | 19 | - name: Run CI script |
20 | run: ./scripts/test | 20 | run: ./scripts/test |
diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index 028c1a4..105f891 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml | |||
@@ -15,6 +15,6 @@ jobs: | |||
15 | ARCH: native | 15 | ARCH: native |
16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} | 16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} |
17 | steps: | 17 | steps: |
18 | - uses: actions/checkout@v2 | 18 | - uses: actions/checkout@main |
19 | - name: Run CI script | 19 | - name: Run CI script |
20 | run: ./scripts/test | 20 | run: ./scripts/test |
diff --git a/.github/workflows/linux_test_asan.yml b/.github/workflows/linux_test_asan.yml index d6fc1e8..12e0889 100644 --- a/.github/workflows/linux_test_asan.yml +++ b/.github/workflows/linux_test_asan.yml | |||
@@ -18,6 +18,6 @@ jobs: | |||
18 | CTEST_OUTPUT_ON_FAILURE: 1 | 18 | CTEST_OUTPUT_ON_FAILURE: 1 |
19 | name: ${{ matrix.compiler }} - ${{ matrix.os }} | 19 | name: ${{ matrix.compiler }} - ${{ matrix.os }} |
20 | steps: | 20 | steps: |
21 | - uses: actions/checkout@v2 | 21 | - uses: actions/checkout@main |
22 | - name: Run CI script | 22 | - name: Run CI script |
23 | run: ./scripts/test | 23 | run: ./scripts/test |
diff --git a/.github/workflows/macos_test.yml b/.github/workflows/macos_test.yml index 6e7adac..83a1b35 100644 --- a/.github/workflows/macos_test.yml +++ b/.github/workflows/macos_test.yml | |||
@@ -17,6 +17,6 @@ jobs: | |||
17 | steps: | 17 | steps: |
18 | - name: Install packages for macos | 18 | - name: Install packages for macos |
19 | run: brew install automake | 19 | run: brew install automake |
20 | - uses: actions/checkout@v2 | 20 | - uses: actions/checkout@main |
21 | - name: Run CI script | 21 | - name: Run CI script |
22 | run: ./scripts/test | 22 | run: ./scripts/test |
diff --git a/.github/workflows/regress.yml b/.github/workflows/regress.yml index 88ce310..7cc35dc 100644 --- a/.github/workflows/regress.yml +++ b/.github/workflows/regress.yml | |||
@@ -8,7 +8,7 @@ jobs: | |||
8 | rust-openssl: | 8 | rust-openssl: |
9 | runs-on: ubuntu-latest | 9 | runs-on: ubuntu-latest |
10 | steps: | 10 | steps: |
11 | - uses: actions/checkout@v3 | 11 | - uses: actions/checkout@main |
12 | - name: Install apt dependencies | 12 | - name: Install apt dependencies |
13 | run: | | 13 | run: | |
14 | sudo apt-get update | 14 | sudo apt-get update |