Skip to content

Commit ae8f0c1

Browse files
committed
Upgrade GitHub Actions versions
We are receiving deprecation warnings about node12, and we need to upgrade these. Signed-off-by: Patrick Avery <[email protected]>
1 parent 7847429 commit ae8f0c1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run:
3232
shell: bash
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0
3737

@@ -111,7 +111,7 @@ jobs:
111111
run: echo "HEXRD_GIT_DESCRIBE=$(git describe --tag)" >> $GITHUB_ENV
112112

113113
- name: Upload the package to github
114-
uses: actions/upload-artifact@v2
114+
uses: actions/upload-artifact@v3
115115
with:
116116
name: HEXRD-${{ matrix.config.name }}-${{ env.HEXRD_GIT_DESCRIBE }}.tar.bz2
117117
path: output/**/*.tar.bz2

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ jobs:
3333
steps:
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v4
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939

4040
- name: Checkout HEXRD
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
path: hexrd
4444

4545
- name: Checkout examples
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
repository: HEXRD/examples
4949
path: examples

0 commit comments

Comments
 (0)