-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
dc52b7c
commit eecbccf
Showing
3 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,7 +161,7 @@ jobs: | |
python: '3.11' | ||
services: | ||
icinga: | ||
image: ghcr.io/telekom-mms/icinga2:director-1.8.1 | ||
image: ghcr.io/telekom-mms/icinga2:director-1.8.1@sha256:bf9205d41607f1641146e870644af0529338d06a9b360737bdf56a3f951cc28b | ||
ports: | ||
- 80:80 | ||
steps: | ||
|
@@ -171,7 +171,7 @@ jobs: | |
under Python ${{ matrix.python }} | ||
# See the documentation for the following GitHub action on | ||
# https://github.com/ansible-community/ansible-test-gh-action/blob/main/README.md | ||
uses: ansible-community/[email protected] | ||
uses: ansible-community/ansible-test-gh-action@f4523b15a83b7d9eb65d859073ff49ad935a785a # v1.14.1 | ||
with: | ||
ansible-core-version: ${{ matrix.ansible }} | ||
# OPTIONAL command to run before invoking `ansible-test integration` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,21 +17,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: create documentation inside docs-folder | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# ansible-doc-extractor requires the collection to be in a directory in | ||
# the form ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}/ | ||
|
||
- name: Check out code to ansible collection location | ||
uses: actions/[email protected] | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
path: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
|
@@ -42,7 +42,7 @@ jobs: | |
run: ansible-doc-extractor docs/ plugins/inventory/* plugins/modules/* | ||
|
||
- name: commit documentation | ||
uses: github-actions-x/[email protected] | ||
uses: github-actions-x/commit@722d56b8968bf00ced78407bbe2ead81062d8baa # v2.9 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
push-branch: 'master' | ||
|
@@ -57,12 +57,12 @@ jobs: | |
name: create release draft | ||
needs: update_docs # the documentation should be updated before creating a new release | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
|
@@ -80,7 +80,7 @@ jobs: | |
|
||
- name: calculate next version | ||
id: version | ||
uses: patrickjahns/version-drafter-action@v1 | ||
uses: patrickjahns/version-drafter-action@fda4b8e4017bee5dd5794f255a4d484e8e647561 # v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
@@ -97,7 +97,7 @@ jobs: | |
run: antsibull-changelog generate -v | ||
|
||
- name: push changelog | ||
uses: github-actions-x/[email protected] | ||
uses: github-actions-x/commit@722d56b8968bf00ced78407bbe2ead81062d8baa # v2.9 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
push-branch: 'master' | ||
|
@@ -110,12 +110,12 @@ jobs: | |
|
||
# do a second checkout to prevent race situation | ||
# changelog gets updated but action works on old commit id | ||
- uses: actions/[email protected] | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
ref: master | ||
|
||
|
||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
- uses: release-drafter/release-drafter@v5 | ||
- uses: release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |