Skip to content

Commit

Permalink
Merge branch 'main' into nat-0205-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrodie18 authored Jul 29, 2023
2 parents 96b3b79 + 6fdbb90 commit 0b35393
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/javagateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
- zabbix_javagateway
steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/plugins-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,22 @@ jobs:
- stable-2.15
- devel
python:
- 3.9
- '3.10'

steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ansible_collections/community/zabbix

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install ansible-base (${{ matrix.ansible }})
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check

- name: Install dependencies
run: pip install docker-compose

- name: Install ansible.netcommon collection
run: ansible-galaxy collection install ansible.netcommon -p $GITHUB_WORKSPACE
working-directory: ./ansible_collections/community/zabbix
Expand All @@ -58,8 +55,9 @@ jobs:
# the Zabbix server. To do this we spin up a Docker container using the `matrix`
# of version and ports specified earlier.
- name: Zabbix container server provisioning
run: docker-compose up -d
working-directory: ./ansible_collections/community/zabbix
uses: isbang/[email protected]
with:
compose-file: "./ansible_collections/community/zabbix/docker-compose.yml"
env:
zabbix_version: ${{ matrix.zabbix_container.version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
version: v62
steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/repo-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
python:
- 3.9
- '3.10'
runs-on: ubuntu-latest
steps:
- name: Check out code
Expand Down Expand Up @@ -45,19 +45,19 @@ jobs:
- stable-2.15
- devel
python:
- 3.9
- '3.10'
runs-on: ubuntu-latest
steps:
# ansible-test requires the collection to be in a directory in the form
# .../ansible_collections/NAMESPACE/COLLECTION_NAME/

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ansible_collections/community/zabbix

- name: Set up Python ${{ matrix.ansible }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
version: v64
steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
version: v62
steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down

0 comments on commit 0b35393

Please sign in to comment.