summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/builds.yml2
-rw-r--r--.github/workflows/codeql-analysis.yml2
-rw-r--r--.github/workflows/coverity.yml2
-rw-r--r--.github/workflows/distributions_php7.yml6
-rw-r--r--.github/workflows/distributions_php8.yml8
-rw-r--r--.github/workflows/release.yml2
6 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index ee87474..e46b1bc 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -23,7 +23,7 @@ jobs:
23 container: ${{ matrix.container }} 23 container: ${{ matrix.container }}
24 steps: 24 steps:
25 - name: Checkout code 25 - name: Checkout code
26 uses: actions/checkout@v3 26 uses: actions/checkout@v4
27 - name: PHP 7 env setup 27 - name: PHP 7 env setup
28 if: startsWith(matrix.container, 'php:7') 28 if: startsWith(matrix.container, 'php:7')
29 run: | 29 run: |
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index a8cf39b..067ef04 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@v3 29 uses: actions/checkout@v4
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 5a289bf..5fb36fd 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@v3 12 uses: actions/checkout@v4
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 db23755..0ecab52 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@v3 15 uses: actions/checkout@v4
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@v3 36 uses: actions/checkout@v4
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@v3 56 uses: actions/checkout@v4
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
diff --git a/.github/workflows/distributions_php8.yml b/.github/workflows/distributions_php8.yml
index 840f9e6..4bca722 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@v3 14 uses: actions/checkout@v4
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@v3 39 uses: actions/checkout@v4
40 - name: Install dependencies 40 - name: Install dependencies
41 run: | 41 run: |
42 apt update 42 apt update
@@ -57,7 +57,7 @@ jobs:
57 container: fedora:latest 57 container: fedora:latest
58 steps: 58 steps:
59 - name: Checkout code 59 - name: Checkout code
60 uses: actions/checkout@v3 60 uses: actions/checkout@v4
61 - name: Install dependencies 61 - name: Install dependencies
62 run: | 62 run: |
63 dnf install -y php-devel php-pear make re2c awk 63 dnf install -y php-devel php-pear make re2c awk
@@ -76,7 +76,7 @@ jobs:
76 container: archlinux:latest 76 container: archlinux:latest
77 steps: 77 steps:
78 - name: Checkout code 78 - name: Checkout code
79 uses: actions/checkout@v3 79 uses: actions/checkout@v4
80 - name: Install dependencies 80 - name: Install dependencies
81 continue-on-error: true 81 continue-on-error: true
82 run: | 82 run: |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b69920a..c963db4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -42,7 +42,7 @@ jobs:
42 container: ubuntu:jammy 42 container: ubuntu:jammy
43 steps: 43 steps:
44 - name: Checkout code 44 - name: Checkout code
45 uses: actions/checkout@v3 45 uses: actions/checkout@v4
46 - name: Set timezone 46 - name: Set timezone
47 if: startsWith(matrix.container, 'ubuntu:') 47 if: startsWith(matrix.container, 'ubuntu:')
48 run: ln -snf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone 48 run: ln -snf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone