Skip to content

Commit a05aa04

Browse files
committed
Upgrade GitHub Actions versions
Signed-off-by: Patrick Avery <[email protected]>
1 parent daab6e5 commit a05aa04

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
with:
4040
fetch-depth: 0
4141
path: hexrdgui
@@ -93,34 +93,34 @@ jobs:
9393

9494
- name: Upload InstallOutput.log
9595
if: ${{ failure() }}
96-
uses: actions/upload-artifact@v2-preview
96+
uses: actions/upload-artifact@v3
9797
with:
9898
name: InstallOutput.log
9999
path: ${{ github.workspace }}/hexrdgui/packaging/_CPack_Packages/*/InstallOutput.log
100100

101101
- name: Upload WIX log ( Windows only )
102102
if: ${{ failure() && matrix.config.os == 'windows-latest'}}
103-
uses: actions/upload-artifact@v2-preview
103+
uses: actions/upload-artifact@v3
104104
with:
105105
name: wix.log
106106
path: ${{ github.workspace }}/hexrdgui/packaging/_CPack_Packages/WIX/wix.log
107107

108108
- name: Upload installer package
109-
uses: actions/upload-artifact@v2-preview
109+
uses: actions/upload-artifact@v3
110110
with:
111111
name: HEXRDGUI-v${{env.VERSION}}.${{ matrix.config.package }}
112112
path: ${{ github.workspace }}/hexrdgui/packaging/HEXRDGUI-${{env.VERSION}}.${{ matrix.config.package }}
113113

114114
- name: Upload installer package Zip ( Windows only )
115115
if: ${{ matrix.config.os == 'windows-latest'}}
116-
uses: actions/upload-artifact@v2-preview
116+
uses: actions/upload-artifact@v3
117117
with:
118118
name: HEXRDGUI-v${{env.VERSION}}.zip
119119
path: ${{ github.workspace }}/hexrdgui/packaging/HEXRDGUI-${{env.VERSION}}.zip
120120

121121
- name: Upload the HEXRDGUI conda package ( PRs only )
122122
if: github.ref != 'refs/heads/master'
123-
uses: actions/upload-artifact@v2-preview
123+
uses: actions/upload-artifact@v3
124124
with:
125125
name: HEXRDGUI-${{ matrix.config.name }}-${{ env.HEXRDGUI_GIT_DESCRIBE }}.tar.bz2
126126
path: ${{ github.workspace }}/hexrdgui/packaging/output/**/*.tar.bz2

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ jobs:
3939
python-version: ${{ matrix.python-version }}
4040

4141
- name: Checkout HEXRD
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343
with:
4444
repository: HEXRD/hexrd
4545
path: hexrd
4646

4747
- name: Checkout HEXRDGUI
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v4
4949
with:
5050
path: hexrdgui
5151

5252
- name: Checkout examples
53-
uses: actions/checkout@v2
53+
uses: actions/checkout@v4
5454
with:
5555
repository: HEXRD/examples
5656
path: examples

0 commit comments

Comments
 (0)