Skip to content

Commit

Permalink
Merge pull request #243 from wpoely86/gh_action2
Browse files Browse the repository at this point in the history
Update gh actions versions: they are deprecated
  • Loading branch information
boegel authored May 4, 2024
2 parents 6d7514b + 31b5060 commit cc2710d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: install tox
Expand Down
4 changes: 2 additions & 2 deletions lib/vsc/install/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def gen_github_action(repo_base_dir=os.getcwd()):
}
},
'steps': [
{'name': 'Checkout code', 'uses': 'actions/checkout@v3'},
{'name': 'Setup Python', 'uses': 'actions/setup-python@v4',
{'name': 'Checkout code', 'uses': 'actions/checkout@v4'},
{'name': 'Setup Python', 'uses': 'actions/setup-python@v5',
'with': {'python-version': '${{ matrix.python }}'}},
# cap versions still compatible with Python 3.6
{'name': 'install tox', 'run': "pip install 'virtualenv<20.22.0' 'tox<4.5.0'"},
Expand Down
2 changes: 1 addition & 1 deletion lib/vsc/install/shared_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _log(self, level, msg, args):

RELOAD_VSC_MODS = False

VERSION = '0.20.1'
VERSION = '0.20.2'

log.info('This is (based on) vsc.install.shared_setup %s', VERSION)
log.info('(using setuptools version %s located at %s)', setuptools.__version__, setuptools.__file__)
Expand Down
4 changes: 2 additions & 2 deletions test/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: install tox
Expand Down

0 comments on commit cc2710d

Please sign in to comment.