File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
1717 name : Format and Lint Check
1818 runs-on : ubuntu-latest
1919 steps :
20- - uses : actions/checkout@v3
20+ - uses : actions/checkout@v4
2121 - name : Set up Python 3.10
2222 id : setup
23- uses : actions/setup-python@v4
23+ uses : actions/setup-python@v5
2424 with :
2525 python-version : ' 3.10'
2626 cache : ' pip'
Original file line number Diff line number Diff line change @@ -13,42 +13,42 @@ jobs:
1313 name : Publish
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717
1818 - name : Gather image info
1919 id : info
2020 run : |
2121 echo "::set-output name=repo-owner::${GITHUB_REPOSITORY_OWNER,,}"
2222
2323 - name : Cache Docker layers
24- uses : actions/cache@v3
24+ uses : actions/cache@v4
2525 with :
2626 path : /tmp/.buildx-cache
2727 key : ${{ runner.os }}-buildx-${{ github.sha }}
2828 restore-keys : |
2929 ${{ runner.os }}-buildx-
3030
3131 - name : Set up Docker Buildx
32- uses : docker/setup-buildx-action@v1
32+ uses : docker/setup-buildx-action@v3
3333
3434 - name : Log in to the GitHub Container Registry
35- uses : docker/login-action@v1
35+ uses : docker/login-action@v3
3636 with :
3737 registry : ghcr.io
3838 username : ${{ github.actor }}
3939 password : ${{ secrets.GITHUB_TOKEN }}
4040
4141 - name : Setup Image Metadata
4242 id : base-meta
43- uses : docker/metadata-action@v3
43+ uses : docker/metadata-action@v5
4444 with :
4545 images : |
4646 ghcr.io/${{ steps.info.outputs.repo-owner }}/acapy-plugin-pickup
4747 tags : |
4848 type=raw,value=${{ inputs.tag }}
4949
5050 - name : Build and Push Image to ghcr.io
51- uses : docker/build-push-action@v3
51+ uses : docker/build-push-action@v5
5252 with :
5353 push : true
5454 context : .
Original file line number Diff line number Diff line change 88 name : Publish
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v3
11+ - uses : actions/checkout@v4
1212
1313 - name : Gather image info
1414 id : info
1515 run : |
1616 echo "::set-output name=repo-owner::${GITHUB_REPOSITORY_OWNER,,}"
1717
1818 - name : Cache Docker layers
19- uses : actions/cache@v3
19+ uses : actions/cache@v4
2020 with :
2121 path : /tmp/.buildx-cache
2222 key : ${{ runner.os }}-buildx-${{ github.sha }}
2323 restore-keys : |
2424 ${{ runner.os }}-buildx-
2525
2626 - name : Set up Docker Buildx
27- uses : docker/setup-buildx-action@v1
27+ uses : docker/setup-buildx-action@v3
2828
2929 - name : Log in to the GitHub Container Registry
30- uses : docker/login-action@v1
30+ uses : docker/login-action@v3
3131 with :
3232 registry : ghcr.io
3333 username : ${{ github.actor }}
3434 password : ${{ secrets.GITHUB_TOKEN }}
3535
3636 - name : Setup Image Metadata
3737 id : base-meta
38- uses : docker/metadata-action@v3
38+ uses : docker/metadata-action@v5
3939 with :
4040 images : |
4141 ghcr.io/${{ steps.info.outputs.repo-owner }}/acapy-plugin-pickup
4444 type=sha
4545
4646 - name : Build and Push Image to ghcr.io
47- uses : docker/build-push-action@v3
47+ uses : docker/build-push-action@v5
4848 with :
4949 push : true
5050 context : .
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
1111 deploy :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v3
14+ - uses : actions/checkout@v4
1515 - name : Install poetry
1616 run : pipx install poetry
1717 - name : Setup Python
1818 id : setup
19- uses : actions/setup-python@v4
19+ uses : actions/setup-python@v5
2020 with :
2121 python-version : ${{ env.PYTHON_VERSION }}
2222 cache : ' poetry'
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ jobs:
1313 python-version : ['3.9', '3.10']
1414
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 - name : Install poetry
1818 run : pipx install poetry
1919 - name : Setup Python
2020 id : setup
21- uses : actions/setup-python@v4
21+ uses : actions/setup-python@v5
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424 cache : ' poetry'
3333 name : Integration Tests
3434 runs-on : ubuntu-latest
3535 steps :
36- - uses : actions/checkout@v3
36+ - uses : actions/checkout@v4
3737 - name : Run integration tests
3838 run : |
3939 docker-compose -f ./int/docker-compose.yml run tests
You can’t perform that action at this time.
0 commit comments