Skip to content

Commit

Permalink
upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danabens committed Dec 8, 2022
1 parent 366dbc8 commit caf7b14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python
- name: Install Dependencies
run: pip install tox
- name: Flake8
Expand All @@ -35,17 +35,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout
- name: Setup Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python
with:
python-version: 3.7
- name: Setup Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python
with:
python-version: 3.8
- name: Setup Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python
with:
python-version: 3.9
- name: Install Dependencies
Expand Down Expand Up @@ -76,9 +76,9 @@ jobs:
if: github.event_name == 'schedule' && github.repository == 'aws/sagemaker-experiments'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python
with:
python-version: '3.x'
- name: Install Dependencies
Expand Down
3 changes: 1 addition & 2 deletions scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ def release():

if not recent_changes_to_src(latest_version):
print("Nothing to release.")
exit(1)
return
exit(0)

changes = get_changes(latest_version)

Expand Down

0 comments on commit caf7b14

Please sign in to comment.