Skip to content

Commit 5a13768

Browse files
committed
cicd: updated Zabbix env to use tags instead of branches
1 parent 0b15904 commit 5a13768

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/mamonsu-tests-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
docker_os: ['centos:7']
26-
zabbix_version: ['5.4']
26+
zabbix_version: ['5.4.8']
2727
pg_version: ['9.6', '10', '11', '12', '13', '14']
2828

2929
steps:

.github/workflows/mamonsu-tests-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
docker_os: ['ubuntu:20.04', 'centos:7', 'centos:8']
26-
zabbix_version: ['4.0', '4.4.10', '5.0', '5.4']
26+
zabbix_version: ['4.0.36', '4.4.10', '5.0.18', '5.4.8']
2727
pg_version: ['9.6', '10', '11', '12', '13', '14']
2828
exclude:
2929
# excludes PG 9.6 on CentOS 8

github-actions-tests/zbx_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# default parameters
4-
ZBX_VERSION='5.4'
4+
ZBX_VERSION='5.4.8'
55

66
for parameter in "$@"
77
do
@@ -19,7 +19,7 @@ done
1919
echo "================================================================================================================="
2020
sudo mkdir 775 -p /docker/zabbix-docker/
2121
cd /docker/zabbix-docker/ 2>&1 1>/dev/null
22-
sudo wget https://github.com/zabbix/zabbix-docker/archive/refs/heads/${ZBX_VERSION}.zip
22+
sudo wget https://github.com/zabbix/zabbix-docker/archive/refs/tags/${ZBX_VERSION}.zip
2323
sudo unzip ${ZBX_VERSION}.zip
2424
cd zabbix-docker-${ZBX_VERSION} 2>&1 1>/dev/null
2525
echo "---> Setting up docker with Zabbix ${ZBX_VERSION}..."

0 commit comments

Comments
 (0)