Skip to content

Add support for Dependabot #357

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions .github/workflows/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name: Ansible Galaxy import
on:
release:
types:
- published
jobs:
galaxy:
name: Galaxy
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/requirements.txt
Original file line number Diff line number Diff line change
@@ -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 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ SUSE/SLES:
Ubuntu:
- xenial
- bionic
- eoan
- focal
- groovy
```

### NGINX Plus
Expand All @@ -88,9 +88,8 @@ Debian:
- buster
FreeBSD:
- 11.2+
- 12
- 12.1+
Oracle Linux:
- 6.5+
- 7.4+
Red Hat:
- 7.4+
Expand All @@ -101,8 +100,8 @@ SUSE/SLES:
Ubuntu:
- xenial
- bionic
- eoan
- focal
- groovy
```

### NGINX Amplify Agent
Expand Down
3 changes: 2 additions & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down