Skip to content

Commit

Permalink
#15 github action update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sauljabin committed Mar 16, 2023
1 parent e41eb72 commit b630d64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
python-version: ['3.10']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Docker Linter
uses: hadolint/hadolint-action@v1.6.0
with:
dockerfile: docker/Dockerfile
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand All @@ -36,4 +36,4 @@ jobs:
- name: Run Tests
run: poetry run python -m scripts.tests-coverage
- name: Publish Coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: ['3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
python-version: ['3.10']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Git Tag
uses: olegtarasov/get-tag@v2.1
id: tagName
with:
tagRegex: 'v(.*)'
tagRegexGroup: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand Down

0 comments on commit b630d64

Please sign in to comment.