|
35 | 35 | shell: bash |
36 | 36 |
|
37 | 37 | steps: |
38 | | - - uses: actions/checkout@v2 |
| 38 | + - uses: actions/checkout@v4 |
39 | 39 | with: |
40 | 40 | fetch-depth: 0 |
41 | 41 | path: hexrdgui |
@@ -93,34 +93,34 @@ jobs: |
93 | 93 |
|
94 | 94 | - name: Upload InstallOutput.log |
95 | 95 | if: ${{ failure() }} |
96 | | - uses: actions/upload-artifact@v2-preview |
| 96 | + uses: actions/upload-artifact@v3 |
97 | 97 | with: |
98 | 98 | name: InstallOutput.log |
99 | 99 | path: ${{ github.workspace }}/hexrdgui/packaging/_CPack_Packages/*/InstallOutput.log |
100 | 100 |
|
101 | 101 | - name: Upload WIX log ( Windows only ) |
102 | 102 | if: ${{ failure() && matrix.config.os == 'windows-latest'}} |
103 | | - uses: actions/upload-artifact@v2-preview |
| 103 | + uses: actions/upload-artifact@v3 |
104 | 104 | with: |
105 | 105 | name: wix.log |
106 | 106 | path: ${{ github.workspace }}/hexrdgui/packaging/_CPack_Packages/WIX/wix.log |
107 | 107 |
|
108 | 108 | - name: Upload installer package |
109 | | - uses: actions/upload-artifact@v2-preview |
| 109 | + uses: actions/upload-artifact@v3 |
110 | 110 | with: |
111 | 111 | name: HEXRDGUI-v${{env.VERSION}}.${{ matrix.config.package }} |
112 | 112 | path: ${{ github.workspace }}/hexrdgui/packaging/HEXRDGUI-${{env.VERSION}}.${{ matrix.config.package }} |
113 | 113 |
|
114 | 114 | - name: Upload installer package Zip ( Windows only ) |
115 | 115 | if: ${{ matrix.config.os == 'windows-latest'}} |
116 | | - uses: actions/upload-artifact@v2-preview |
| 116 | + uses: actions/upload-artifact@v3 |
117 | 117 | with: |
118 | 118 | name: HEXRDGUI-v${{env.VERSION}}.zip |
119 | 119 | path: ${{ github.workspace }}/hexrdgui/packaging/HEXRDGUI-${{env.VERSION}}.zip |
120 | 120 |
|
121 | 121 | - name: Upload the HEXRDGUI conda package ( PRs only ) |
122 | 122 | if: github.ref != 'refs/heads/master' |
123 | | - uses: actions/upload-artifact@v2-preview |
| 123 | + uses: actions/upload-artifact@v3 |
124 | 124 | with: |
125 | 125 | name: HEXRDGUI-${{ matrix.config.name }}-${{ env.HEXRDGUI_GIT_DESCRIBE }}.tar.bz2 |
126 | 126 | path: ${{ github.workspace }}/hexrdgui/packaging/output/**/*.tar.bz2 |
|
0 commit comments