Skip to content

Commit

Permalink
Updated GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
teaf-wise committed Jul 2, 2024
1 parent 93d08b2 commit 6c35d24
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/connectors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5.1.0
with:
python-version: 3.8
python-version: '3.8'

- name: Check all connectors are installable
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Check if python changes are present
id: check
Expand All @@ -28,9 +28,9 @@ jobs:

- name: Set up Python 3.8
if: steps.check.outcome == 'failure'
uses: actions/setup-python@v4
uses: actions/setup-python@v5.1.0
with:
python-version: 3.8
python-version: '3.8'

- name: Install dependencies
if: steps.check.outcome == 'failure'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
path: gh_doc_automation

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5.1.0
with:
python-version: '3.8'

Expand Down

0 comments on commit 6c35d24

Please sign in to comment.