@@ -37,13 +37,13 @@ jobs:
3737 python_version : [ '3.10' ]
3838 runs-on : ${{ matrix.os }}
3939 steps :
40- - uses : actions/checkout@v3
41- - uses : actions/setup-python@v4
40+ - uses : actions/checkout@v4
41+ - uses : actions/setup-python@v5
4242 with :
4343 python-version : ${{ matrix.python_version }}
4444 - name : Cache spidermonkey build
4545 id : cache-spidermonkey
46- uses : actions/cache@v3
46+ uses : actions/cache@v4
4747 with :
4848 path : |
4949 ./_spidermonkey_install/*
@@ -60,10 +60,10 @@ jobs:
6060 build-spidermonkey-win :
6161 runs-on : windows-2019
6262 steps :
63- - uses : actions/checkout@v3
63+ - uses : actions/checkout@v4
6464 - name : Cache spidermonkey build
6565 id : cache-spidermonkey
66- uses : actions/cache@v3
66+ uses : actions/cache@v4
6767 with :
6868 path : |
6969 ./_spidermonkey_install/*
@@ -110,12 +110,12 @@ jobs:
110110 python_version : ' 3.9'
111111 runs-on : ${{ matrix.os }}
112112 steps :
113- - uses : actions/checkout@v3
113+ - uses : actions/checkout@v4
114114 with :
115115 submodules : recursive
116116 fetch-depth : 0 # fetch all history for all branches and tags
117117 # poetry-dynamic-versioning needs git tags to produce the correct version number
118- - uses : actions/setup-python@v4
118+ - uses : actions/setup-python@v5
119119 with :
120120 python-version : ${{ matrix.python_version }}
121121 - name : Setup Poetry
@@ -144,7 +144,7 @@ jobs:
144144 poetry install --no-root --only=dev
145145 echo "Installed Dependencies"
146146 - name : Use cached spidermonkey build
147- uses : actions/cache@v3
147+ uses : actions/cache@v4
148148 with :
149149 path : |
150150 ./_spidermonkey_install/*
@@ -213,10 +213,10 @@ jobs:
213213 sdist :
214214 runs-on : ubuntu-20.04
215215 steps :
216- - uses : actions/checkout@v3
216+ - uses : actions/checkout@v4
217217 with :
218218 fetch-depth : 0
219- - uses : actions/setup-python@v4
219+ - uses : actions/setup-python@v5
220220 with :
221221 python-version : ' 3.9'
222222 - name : Setup Poetry
@@ -239,7 +239,7 @@ jobs:
239239 if : ${{ success() && github.event_name == 'push' && contains(github.ref, 'refs/tags/') }}
240240 steps :
241241 # no need to checkout
242- - uses : actions/setup-python@v4
242+ - uses : actions/setup-python@v5
243243 with :
244244 python-version : ' 3.9'
245245 - run : pip install twine
0 commit comments