Add support for Dependabot (#357)
This commit is contained in:
parent
6d48c2a397
commit
3ad13e2641
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/.github/workflows"
|
||||
schedule:
|
||||
interval: "daily"
|
2
.github/workflows/galaxy.yml
vendored
2
.github/workflows/galaxy.yml
vendored
@ -2,6 +2,8 @@
|
||||
name: Ansible Galaxy import
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
jobs:
|
||||
galaxy:
|
||||
name: Galaxy
|
||||
|
8
.github/workflows/molecule.yml
vendored
8
.github/workflows/molecule.yml
vendored
@ -43,13 +43,7 @@ jobs:
|
||||
|
||||
- name: Install Molecule dependencies
|
||||
if: "!(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
|
||||
run: |
|
||||
pip3 install ansible-base==2.10.4
|
||||
pip3 install ansible==2.10.5
|
||||
pip3 install ansible-lint==4.3.7
|
||||
pip3 install yamllint==1.25.0
|
||||
pip3 install "molecule[docker]"==3.2.2
|
||||
pip3 install docker==4.4.1
|
||||
run: pip3 install -r .github/workflows/requirements.txt
|
||||
|
||||
- name: Run Molecule tests
|
||||
if: "!(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
|
||||
|
6
.github/workflows/requirements.txt
vendored
Normal file
6
.github/workflows/requirements.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
ansible-base==2.10.4
|
||||
ansible==2.10.5
|
||||
ansible-lint==4.3.7
|
||||
yamllint==1.25.0
|
||||
molecule[docker]==3.2.2
|
||||
docker==4.4.1
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## 0.19.2 (Unreleased)
|
||||
|
||||
FEATURES:
|
||||
|
||||
Add support for Dependabot.
|
||||
|
||||
ENHANCEMENTS:
|
||||
|
||||
* Only run GitHub actions Galaxy CI/CD workflow when a new release is published.
|
||||
* Update list of supported platforms.
|
||||
|
||||
## 0.19.1 (January 11, 2021)
|
||||
|
||||
ENHANCEMENTS:
|
||||
|
@ -65,8 +65,8 @@ SUSE/SLES:
|
||||
Ubuntu:
|
||||
- xenial
|
||||
- bionic
|
||||
- eoan
|
||||
- focal
|
||||
- groovy
|
||||
```
|
||||
|
||||
### NGINX Plus
|
||||
@ -88,9 +88,8 @@ Debian:
|
||||
- buster
|
||||
FreeBSD:
|
||||
- 11.2+
|
||||
- 12
|
||||
- 12.1+
|
||||
Oracle Linux:
|
||||
- 6.5+
|
||||
- 7.4+
|
||||
Red Hat:
|
||||
- 7.4+
|
||||
@ -101,8 +100,8 @@ SUSE/SLES:
|
||||
Ubuntu:
|
||||
- xenial
|
||||
- bionic
|
||||
- eoan
|
||||
- focal
|
||||
- groovy
|
||||
```
|
||||
|
||||
### NGINX Amplify Agent
|
||||
|
@ -30,12 +30,13 @@ galaxy_info:
|
||||
- name: FreeBSD
|
||||
versions:
|
||||
- 11.2
|
||||
- 12.0
|
||||
- 12.1
|
||||
- name: Ubuntu
|
||||
versions:
|
||||
- xenial
|
||||
- bionic
|
||||
- focal
|
||||
- groovy
|
||||
- name: SLES
|
||||
versions:
|
||||
- 12
|
||||
|
Loading…
Reference in New Issue
Block a user