Skip to content

Commit

Permalink
Update upload-artifact, download-artifact and checkout versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
samcunliffe authored Nov 18, 2024
1 parent d4c8d3a commit e60ce9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up MATLAB
uses: matlab-actions/[email protected]
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
if: matrix.build_testing == 'OFF' && matrix.build_type == 'Debug'
# If we use the build with testing ON, we'd also need to copy over (and
# install) the libtdms.so so use the OFF build for simplicity.
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tdms_build_${{ matrix.os }}
path: ${{ runner.workspace }}/build/tdms_build.tar
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
python3 -m pip install -r ${GITHUB_WORKSPACE}/tdms/tests/requirements.txt
- name: Download build result
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tdms_build_${{ matrix.os }}
path: ${{ runner.workspace }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: "true"

Expand All @@ -45,7 +45,7 @@ jobs:
shell: bash

- name: Upload the website
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tdms_website
path: html/*
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/checkout@v3

- name: Download the content for deployment
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tdms_website
path: html
Expand Down

0 comments on commit e60ce9d

Please sign in to comment.