Skip to content

Commit

Permalink
Update github workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Aug 12, 2024
1 parent 1c78e95 commit 0f85743
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup_conan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ runs:
using: "composite"
steps:
- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.10"

- name: Setup Conan and Export Recipes
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ jobs:
runs-on: ${{ inputs.platform }}
steps:
- name: Retrieve Code
uses: actions/checkout@v3
uses: actions/checkout@main
with:
ref: ${{ inputs.branch }}
if: ${{ inputs.testing == 'True' }}

- name: Retrieve Recipe
uses: actions/checkout@v3
uses: actions/checkout@main
with:
repository: eBay/sisl
ref: ${{ inputs.branch }}
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
if: ${{ inputs.testing == 'True' && inputs.tooling == 'Coverage' }}

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version_change_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@main
with:
fetch-depth: 2
- name: Check if file is modified
Expand Down

0 comments on commit 0f85743

Please sign in to comment.