Skip to content

Commit

Permalink
Upgrade GitHub Actions versions
Browse files Browse the repository at this point in the history
We are receiving deprecation warnings about node12, and we need to
upgrade these.

Signed-off-by: Patrick Avery <patrick.avery@kitware.com>
  • Loading branch information
psavery committed Oct 19, 2023
1 parent 7847429 commit ae8f0c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

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

- name: Upload the package to github
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: HEXRD-${{ matrix.config.name }}-${{ env.HEXRD_GIT_DESCRIBE }}.tar.bz2
path: output/**/*.tar.bz2
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ jobs:
steps:

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Checkout HEXRD
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: hexrd

- name: Checkout examples
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: HEXRD/examples
path: examples
Expand Down

0 comments on commit ae8f0c1

Please sign in to comment.