Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Commit

Permalink
ci(GITHUB): use checkout action v2 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
niall-byrne committed Jan 28, 2022
1 parent 7dbd629 commit 9b3f9c0
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
steps:
- name: Release -- Checkout Repository
if: contains(github.ref, '/tags/v')
uses: actions/[email protected]
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Release -- Setup Environment
if: contains(github.ref, '/tags/v')
Expand Down Expand Up @@ -72,7 +74,7 @@ jobs:

steps:
- name: Documentation Test -- Checkout Repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: Documentation Test -- Setup Environment
run: |
Expand Down Expand Up @@ -106,7 +108,7 @@ jobs:

steps:
- name: Molecule Lint -- Checkout Repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: Molecule Lint -- Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
Expand Down Expand Up @@ -151,7 +153,7 @@ jobs:

steps:
- name: OSX Build -- Checkout
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: OSX Build -- Setup python
uses: actions/setup-python@v2
Expand Down Expand Up @@ -195,7 +197,9 @@ jobs:

steps:
- name: Security Test -- Checkout Repository
uses: actions/[email protected]
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Security Test -- Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
Expand Down Expand Up @@ -233,7 +237,7 @@ jobs:

steps:
- name: Start -- Checkout Repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: Start -- Setup Environment
run: |
Expand All @@ -257,7 +261,7 @@ jobs:

steps:
- name: Success -- Checkout Repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: Success -- Setup Environment
run: |
Expand All @@ -280,7 +284,7 @@ jobs:

steps:
- name: Workflow Lint -- Checkout Repository
uses: actions/checkout@v2.4.0
uses: actions/checkout@v2

- name: Workflow Lint -- Setup Environment
run: |
Expand Down

0 comments on commit 9b3f9c0

Please sign in to comment.