diff options
| -rw-r--r-- | .github/workflows/builds.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/coverity.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/distributions_php7.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/distributions_php8.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
6 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index a1206ea..ecfd9a7 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml | |||
| @@ -22,7 +22,7 @@ jobs: | |||
| 22 | container: ${{ matrix.container }} | 22 | container: ${{ matrix.container }} |
| 23 | steps: | 23 | steps: |
| 24 | - name: Checkout code | 24 | - name: Checkout code |
| 25 | uses: actions/checkout@v2 | 25 | uses: actions/checkout@v3 |
| 26 | - name: PHP 7 env setup | 26 | - name: PHP 7 env setup |
| 27 | if: startsWith(matrix.container, 'php:7') | 27 | if: startsWith(matrix.container, 'php:7') |
| 28 | run: | | 28 | run: | |
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 7b3b6fd..b27024a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml | |||
| @@ -26,7 +26,7 @@ jobs: | |||
| 26 | 26 | ||
| 27 | steps: | 27 | steps: |
| 28 | - name: Checkout repository | 28 | - name: Checkout repository |
| 29 | uses: actions/checkout@v2 | 29 | uses: actions/checkout@v3 |
| 30 | 30 | ||
| 31 | # Initializes the CodeQL tools for scanning. | 31 | # Initializes the CodeQL tools for scanning. |
| 32 | - name: Initialize CodeQL | 32 | - name: Initialize CodeQL |
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index d83aa9f..5a289bf 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml | |||
| @@ -9,7 +9,7 @@ jobs: | |||
| 9 | container: debian:stable | 9 | container: debian:stable |
| 10 | steps: | 10 | steps: |
| 11 | - name: Checkout code | 11 | - name: Checkout code |
| 12 | uses: actions/checkout@v2 | 12 | uses: actions/checkout@v3 |
| 13 | - name: Install dependencies | 13 | - name: Install dependencies |
| 14 | run: | | 14 | run: | |
| 15 | apt update | 15 | apt update |
diff --git a/.github/workflows/distributions_php7.yml b/.github/workflows/distributions_php7.yml index 60eedd2..cd65177 100644 --- a/.github/workflows/distributions_php7.yml +++ b/.github/workflows/distributions_php7.yml | |||
| @@ -12,7 +12,7 @@ jobs: | |||
| 12 | container: debian:stable | 12 | container: debian:stable |
| 13 | steps: | 13 | steps: |
| 14 | - name: Checkout code | 14 | - name: Checkout code |
| 15 | uses: actions/checkout@v2 | 15 | uses: actions/checkout@v3 |
| 16 | - name: Remove php8 tests for php7 | 16 | - name: Remove php8 tests for php7 |
| 17 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt src/tests/disable_function/*_signal.phpt | 17 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt src/tests/disable_function/*_signal.phpt |
| 18 | - name: Install dependencies | 18 | - name: Install dependencies |
| @@ -33,7 +33,7 @@ jobs: | |||
| 33 | container: fedora:34 | 33 | container: fedora:34 |
| 34 | steps: | 34 | steps: |
| 35 | - name: Checkout code | 35 | - name: Checkout code |
| 36 | uses: actions/checkout@v2 | 36 | uses: actions/checkout@v3 |
| 37 | - name: Remove php8 tests for php7 | 37 | - name: Remove php8 tests for php7 |
| 38 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt src/tests/disable_function/*_signal.phpt | 38 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt src/tests/disable_function/*_signal.phpt |
| 39 | - name: Install dependencies | 39 | - name: Install dependencies |
| @@ -53,7 +53,7 @@ jobs: | |||
| 53 | container: ubuntu:latest | 53 | container: ubuntu:latest |
| 54 | steps: | 54 | steps: |
| 55 | - name: Checkout code | 55 | - name: Checkout code |
| 56 | uses: actions/checkout@v2 | 56 | uses: actions/checkout@v3 |
| 57 | - name: Remove php8 tests for php7 | 57 | - name: Remove php8 tests for php7 |
| 58 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt | 58 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt |
| 59 | - name: Install dependencies | 59 | - name: Install dependencies |
| @@ -74,7 +74,7 @@ jobs: | |||
| 74 | container: archlinux:latest | 74 | container: archlinux:latest |
| 75 | steps: | 75 | steps: |
| 76 | - name: Checkout code | 76 | - name: Checkout code |
| 77 | uses: actions/checkout@v2 | 77 | uses: actions/checkout@v3 |
| 78 | - name: Remove php8 tests for php7 | 78 | - name: Remove php8 tests for php7 |
| 79 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt | 79 | run: rm -rf src/tests/*php8*/ src/tests/*/*_php8.phpt |
| 80 | - name: Install dependencies | 80 | - name: Install dependencies |
diff --git a/.github/workflows/distributions_php8.yml b/.github/workflows/distributions_php8.yml index adf71e6..04867d7 100644 --- a/.github/workflows/distributions_php8.yml +++ b/.github/workflows/distributions_php8.yml | |||
| @@ -11,7 +11,7 @@ jobs: | |||
| 11 | container: alpine:edge | 11 | container: alpine:edge |
| 12 | steps: | 12 | steps: |
| 13 | - name: Checkout code | 13 | - name: Checkout code |
| 14 | uses: actions/checkout@v2 | 14 | uses: actions/checkout@v3 |
| 15 | - name: Remove php7 tests for php8 | 15 | - name: Remove php7 tests for php8 |
| 16 | run: rm -rf src/tests/*php7*/ | 16 | run: rm -rf src/tests/*php7*/ |
| 17 | - name: Remove tests failing on alpine for wathever reason | 17 | - name: Remove tests failing on alpine for wathever reason |
| @@ -36,7 +36,7 @@ jobs: | |||
| 36 | container: debian:testing | 36 | container: debian:testing |
| 37 | steps: | 37 | steps: |
| 38 | - name: Checkout code | 38 | - name: Checkout code |
| 39 | uses: actions/checkout@v2 | 39 | uses: actions/checkout@v3 |
| 40 | - name: Install dependencies | 40 | - name: Install dependencies |
| 41 | run: | | 41 | run: | |
| 42 | apt update | 42 | apt update |
| @@ -55,7 +55,7 @@ jobs: | |||
| 55 | container: fedora:latest | 55 | container: fedora:latest |
| 56 | steps: | 56 | steps: |
| 57 | - name: Checkout code | 57 | - name: Checkout code |
| 58 | uses: actions/checkout@v2 | 58 | uses: actions/checkout@v3 |
| 59 | - name: Install dependencies | 59 | - name: Install dependencies |
| 60 | run: | | 60 | run: | |
| 61 | dnf install -y php-devel php-pear make re2c | 61 | dnf install -y php-devel php-pear make re2c |
| @@ -73,7 +73,7 @@ jobs: | |||
| 73 | container: archlinux:latest | 73 | container: archlinux:latest |
| 74 | steps: | 74 | steps: |
| 75 | - name: Checkout code | 75 | - name: Checkout code |
| 76 | uses: actions/checkout@v2 | 76 | uses: actions/checkout@v3 |
| 77 | - name: Install dependencies | 77 | - name: Install dependencies |
| 78 | continue-on-error: true | 78 | continue-on-error: true |
| 79 | run: | | 79 | run: | |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f408491..a5203cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
| @@ -51,7 +51,7 @@ jobs: | |||
| 51 | container: ubuntu:kinetic | 51 | container: ubuntu:kinetic |
| 52 | steps: | 52 | steps: |
| 53 | - name: Checkout code | 53 | - name: Checkout code |
| 54 | uses: actions/checkout@v2 | 54 | uses: actions/checkout@v3 |
| 55 | - name: Set timezone | 55 | - name: Set timezone |
| 56 | if: startsWith(matrix.container, 'ubuntu:') | 56 | if: startsWith(matrix.container, 'ubuntu:') |
| 57 | run: ln -snf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone | 57 | run: ln -snf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone |
