Skip to content

Commit

Permalink
Merge pull request #148 from snypy/update-actions
Browse files Browse the repository at this point in the history
Update github action versions
  • Loading branch information
nezhar authored Apr 15, 2024
2 parents 7bbe966 + 399442b commit 79b63af
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- "3.11"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -52,15 +52,16 @@ jobs:

- name: Create artifact
if: ${{ matrix.python-version == '3.10' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: schema
path: snypy/schema.yml
if-no-files-found: error

- name: Upload coverage to Codecov
if: ${{ matrix.python-version == '3.10' }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: snypy
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
version_bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'snypy/snypy-docker'
token: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down

0 comments on commit 79b63af

Please sign in to comment.