Skip to content

Commit

Permalink
Update Github Actions [API-2265] (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
emreyigit authored Oct 14, 2024
1 parent 1579ff5 commit 0333298
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ jobs:

- name: Checkout code for PR
if: github.event_name == 'pull_request_target'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.pull_request.number }}/merge

- name: Checkout repository for push event
if: github.event_name == 'push'
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Checkout PR coming from community.
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.inputs.pr_number }}/merge

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linter_docs_mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: '3.12'

- name: Checkout to code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
python-version: '3.12'

- name: Checkout to code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand All @@ -60,7 +60,7 @@ jobs:
python-version: '3.12'

- name: Checkout to code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
- name: Checkout to code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install -r requirements-test.txt
Expand Down

0 comments on commit 0333298

Please sign in to comment.