This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://redirect.github.com/actions/setup-go) | action | minor | `v6.1.0` → `v6.2.0` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v6.2.0`](https://redirect.github.com/actions/setup-go/releases/tag/v6.2.0) [Compare Source](https://redirect.github.com/actions/setup-go/compare/v6.1.0...v6.2.0) #### What's Changed ##### Enhancements - Example for restore-only cache in documentation by [@​aparnajyothi-y](https://redirect.github.com/aparnajyothi-y) in [#​696](https://redirect.github.com/actions/setup-go/pull/696) - Update Node.js version in action.yml by [@​ccoVeille](https://redirect.github.com/ccoVeille) in [#​691](https://redirect.github.com/actions/setup-go/pull/691) - Documentation update of actions/checkout by [@​deining](https://redirect.github.com/deining) in [#​683](https://redirect.github.com/actions/setup-go/pull/683) ##### Dependency updates - Upgrade js-yaml from 3.14.1 to 3.14.2 by [@​dependabot](https://redirect.github.com/dependabot) in [#​682](https://redirect.github.com/actions/setup-go/pull/682) - Upgrade [@​actions/cache](https://redirect.github.com/actions/cache) to v5 by [@​salmanmkc](https://redirect.github.com/salmanmkc) in [#​695](https://redirect.github.com/actions/setup-go/pull/695) - Upgrade actions/checkout from 5 to 6 by [@​dependabot](https://redirect.github.com/dependabot) in [#​686](https://redirect.github.com/actions/setup-go/pull/686) - Upgrade qs from 6.14.0 to 6.14.1 by [@​dependabot](https://redirect.github.com/dependabot) in [#​703](https://redirect.github.com/actions/setup-go/pull/703) #### New Contributors - [@​ccoVeille](https://redirect.github.com/ccoVeille) made their first contribution in [#​691](https://redirect.github.com/actions/setup-go/pull/691) - [@​deining](https://redirect.github.com/deining) made their first contribution in [#​683](https://redirect.github.com/actions/setup-go/pull/683) **Full Changelog**: <https://github.com/actions/setup-go/compare/v6...v6.2.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- ## Need help? You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section. <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi44Mi4zIiwidXBkYXRlZEluVmVyIjoiNDIuODIuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidXBkYXRlLW1pbm9yIl19--> Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: zabbix_70
|
|
run-name: Compatibility with Zabbix 7.0 test
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
compatibility-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
|
|
with:
|
|
go-version: '1.25'
|
|
|
|
- name: Start Zabbix environment
|
|
run: |
|
|
docker compose -f devenv/zabbix70/docker-compose.yml up -d
|
|
# Wait for Zabbix to be ready
|
|
sleep 30
|
|
|
|
- name: Run integration tests
|
|
env:
|
|
INTEGRATION_TEST70: 'true'
|
|
ZABBIX_URL: 'https://localhost/api_jsonrpc.php'
|
|
ZABBIX_USER: 'Admin'
|
|
ZABBIX_PASSWORD: 'zabbix'
|
|
run: go test -v ./pkg/zabbixapi/...
|
|
|
|
- name: Cleanup
|
|
if: always()
|
|
run: docker compose -f devenv/zabbix70/docker-compose.yml down -v
|