|
12 | 12 | matrix:
|
13 | 13 | image: ["authoring", "gateway", "publishing", "api", "editor"]
|
14 | 14 | steps:
|
15 |
| - - uses: actions/checkout@v2 |
| 15 | + - uses: actions/checkout@v3 |
16 | 16 | - name: Login Docker DH
|
17 | 17 | if: ${{ github.repository == 'soluto/tweek' }}
|
18 | 18 | env:
|
|
27 | 27 | echo cp -a ${{ matrix.image }}-${{ github.sha }}.tar .github/workflows/
|
28 | 28 | cp -a ${{ matrix.image }}-${{ github.sha }}.tar .github/workflows/
|
29 | 29 | - name: 'Upload Artifact'
|
30 |
| - uses: actions/upload-artifact@v2 |
| 30 | + uses: actions/upload-artifact@v3 |
31 | 31 | with:
|
32 | 32 | name: build-images
|
33 | 33 | path: |
|
|
37 | 37 | needs: ["build-images"]
|
38 | 38 | runs-on: ubuntu-latest
|
39 | 39 | steps:
|
40 |
| - - uses: actions/checkout@v2 |
| 40 | + - uses: actions/checkout@v3 |
41 | 41 | - name: Download build images
|
42 |
| - uses: actions/download-artifact@v2 |
| 42 | + uses: actions/download-artifact@v3 |
43 | 43 | with:
|
44 | 44 | name: build-images
|
45 | 45 | - name: load images into docker
|
|
50 | 50 | needs: ["build-images"]
|
51 | 51 | runs-on: ubuntu-latest
|
52 | 52 | steps:
|
53 |
| - - uses: actions/checkout@v2 |
| 53 | + - uses: actions/checkout@v3 |
54 | 54 | - name: Download build images
|
55 |
| - uses: actions/download-artifact@v2 |
| 55 | + uses: actions/download-artifact@v3 |
56 | 56 | with:
|
57 | 57 | name: build-images
|
58 | 58 | - name: load images into docker
|
|
65 | 65 | needs: ["build-images"]
|
66 | 66 | runs-on: ubuntu-latest
|
67 | 67 | steps:
|
68 |
| - - uses: actions/checkout@v2 |
| 68 | + - uses: actions/checkout@v3 |
69 | 69 | - name: Download build images
|
70 |
| - uses: actions/download-artifact@v2 |
| 70 | + uses: actions/download-artifact@v3 |
71 | 71 | with:
|
72 | 72 | name: build-images
|
73 | 73 | - name: load images into docker
|
|
79 | 79 | runs-on: ubuntu-latest
|
80 | 80 | if: ${{ github.repository == 'soluto/tweek' && !startsWith(github.ref, 'refs/heads/dependabot') }}
|
81 | 81 | steps:
|
82 |
| - - uses: actions/checkout@v2 |
| 82 | + - uses: actions/checkout@v3 |
83 | 83 | with:
|
84 | 84 | fetch-depth: 0
|
85 | 85 | - name: Login Docker DH
|
|
89 | 89 | DOCKERHUB_USER: ${{ secrets.DOCKER_USER }}
|
90 | 90 | run: echo $DOCKERHUB_TOKEN | docker login --username $DOCKERHUB_USER --password-stdin
|
91 | 91 | - name: Download build images
|
92 |
| - uses: actions/download-artifact@v2 |
| 92 | + uses: actions/download-artifact@v3 |
93 | 93 | with:
|
94 | 94 | name: build-images
|
95 | 95 | - name: load images into docker
|
|
0 commit comments