File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -10,25 +10,25 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - name : " Get the code"
13- uses : actions/checkout@v2
14- - name : " Submodules "
15- run : " git submodule update --init -- recursive"
13+ uses : actions/checkout@v3
14+ with :
15+ submodules : recursive
1616 - name : " Get tag version"
1717 run : echo "TAG_VERSION=${GITHUB_REF#refs/tags/v*}" >> $GITHUB_ENV
1818 - name : " Print tag version"
1919 run : echo ${{ env.TAG_VERSION }}
2020 - name : " Set up QEMU"
21- uses : docker/setup-qemu-action@v1
21+ uses : docker/setup-qemu-action@v2
2222 - name : " Set up Docker Buildx"
23- uses : docker/setup-buildx-action@v1
23+ uses : docker/setup-buildx-action@v2
2424 - name : " Log in to DockerHub"
25- uses : docker/login-action@v1
25+ uses : docker/login-action@v2
2626 with :
2727 username : ${{ secrets.DOCKER_USERNAME }}
2828 password : ${{ secrets.DOCKER_PASSWORD }}
2929 - name : " Build and push cpython container"
3030 id : docker_build
31- uses : docker/build-push-action@v2
31+ uses : docker/build-push-action@v3
3232 with :
3333 push : true
3434 context : .
Original file line number Diff line number Diff line change 2020 if : github.event.pull_request.draft == false
2121 runs-on : ubuntu-20.04
2222 container :
23- image : faasm/cpython:0.2.0
23+ image : faasm/cpython:0.2.1
2424 steps :
2525 - name : " Fetch code"
2626 uses : actions/checkout@v3
4141 REDIS_QUEUE_HOST : redis
4242 REDIS_STATE_HOST : redis
4343 container :
44- image : faasm/cpython:0.2.0
44+ image : faasm/cpython:0.2.1
4545 services :
4646 redis :
4747 image : redis
Original file line number Diff line number Diff line change 1- 0.2.0
1+ 0.2.1
Original file line number Diff line number Diff line change 5151
5252# Libs that can be installed directly from PyPI
5353PYPI_LIBS = [
54- "dulwich" ,
54+ # 17/01/2023 - dulwhich package installation is broken
55+ # "dulwich",
5556 "Genshi" ,
5657 "pyaes" ,
5758 "pyperf" ,
You can’t perform that action at this time.
0 commit comments