Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
# python-version: "3.14"
steps:
- name: Perform sanity testing
uses: ansible-community/ansible-test-gh-action@d3a8ec7a59694e25e210fcd44738910149537f0e # v1.17.0
uses: ansible-community/ansible-test-gh-action@6ded727edb598e670ac056a8e680ca4050bac0a3 # v1.18.0
with:
ansible-core-version: ${{ matrix.ansible-core-version }}
testing-type: sanity
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
# python-version: "3.14"
steps:
- name: Perform unit testing
uses: ansible-community/ansible-test-gh-action@d3a8ec7a59694e25e210fcd44738910149537f0e # v1.17.0
uses: ansible-community/ansible-test-gh-action@6ded727edb598e670ac056a8e680ca4050bac0a3 # v1.18.0
with:
ansible-core-version: ${{ matrix.ansible-core-version }}
testing-type: units
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Retrieve pull request base ref
id: retrieve-pr-info
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const pr = await github.rest.pulls.get({
Expand Down Expand Up @@ -47,15 +47,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the source collection (on issue comment)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
path: "${{ env.source_dir }}"
fetch-depth: 0
ref: ${{ needs.retrieve-pr-info.outputs.head_ref }}
if: ${{ github.event_name == 'issue_comment' }}

- name: Checkout the source collection (on other triggering method)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
path: "${{ env.source_dir }}"
fetch-depth: 0
Expand Down Expand Up @@ -89,20 +89,20 @@ jobs:
name: "${{ matrix.job-id }}"
steps:
- name: Checkout the source collection (on issue comment)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
path: "${{ env.source_dir }}"
ref: ${{ needs.retrieve-pr-info.outputs.head_ref }}
if: ${{ github.event_name == 'issue_comment' }}

- name: Checkout the source collection (on other triggering method)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
path: "${{ env.source_dir }}"
if: ${{ github.event_name != 'issue_comment' }}

- name: Checkout the amazon.aws collection need to run tests.
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: ansible-collections/amazon.aws
ref: ${{ needs.retrieve-pr-info.outputs.base_ref }}
Expand All @@ -118,7 +118,7 @@ jobs:
- uses: ansible/ansible-test-auth@008750a5bf07124c3ab86d30d73d7319d7518f36

- name: Run integration tests
uses: ansible-community/ansible-test-gh-action@d3a8ec7a59694e25e210fcd44738910149537f0e
uses: ansible-community/ansible-test-gh-action@6ded727edb598e670ac056a8e680ca4050bac0a3
with:
ansible-core-version: ${{ env.ansible_version }}
origin-python-version: ${{ env.python_version }}
Expand Down
Loading