Skip to content

Commit c30f6f4

Browse files
committed
CI updates
- Fix Github CI warnings regarding use of Nodejs 16. - Add Redis 7.2 to compatibility testing. - Use latest patch versions of Redis in compatibility testing.
1 parent 07f6da1 commit c30f6f4

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Run static checkers
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Run clang-format style check (.c and .h)
1212
uses: jidicula/[email protected]
1313

@@ -53,10 +53,10 @@ jobs:
5353
cmake -S hiredis-${VERSION} -B hiredis-build -DENABLE_SSL=ON
5454
sudo make -C hiredis-build install
5555
- name: Setup cmake
56-
uses: jwlawson/actions-setup-cmake@v1
56+
uses: jwlawson/actions-setup-cmake@v2
5757
with:
5858
cmake-version: ${{ matrix.cmake-version }}
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060
- name: Create build folder
6161
run: cmake -E make_directory build
6262
- name: Generate makefiles
@@ -102,7 +102,7 @@ jobs:
102102
- name: Prepare
103103
run: |
104104
brew install cmake ninja openssl
105-
- uses: actions/checkout@v3
105+
- uses: actions/checkout@v4
106106
- name: Build
107107
run: |
108108
mkdir build && cd build
@@ -113,7 +113,7 @@ jobs:
113113
name: Windows
114114
runs-on: windows-latest
115115
steps:
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117
- uses: ilammy/msvc-dev-cmd@v1
118118
- name: Prepare
119119
run: |
@@ -129,7 +129,7 @@ jobs:
129129
name: Windows (MinGW64)
130130
runs-on: windows-latest
131131
steps:
132-
- uses: actions/checkout@v3
132+
- uses: actions/checkout@v4
133133
- name: Set up MinGW
134134
uses: msys2/setup-msys2@v2
135135
with:

.github/workflows/coverity.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

.github/workflows/redis_compability.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
include:
13-
- redis-version: 7.0.0
14-
- redis-version: 6.2.7
15-
- redis-version: 6.0.16
13+
- redis-version: 7.2.4
14+
- redis-version: 7.0.15
15+
- redis-version: 6.2.14
16+
- redis-version: 6.0.20
1617
- redis-version: 5.0.14
1718
steps:
1819
- name: Prepare
@@ -21,7 +22,7 @@ jobs:
2122
packages: libevent-dev
2223
version: 1.0
2324

24-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2526

2627
- name: Create build folder
2728
run: cmake -E make_directory build

0 commit comments

Comments
 (0)