Skip to content

Commit

Permalink
Actions: Update GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
oblivioncth committed Jul 7, 2024
1 parent e54e021 commit b96d312
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-qt-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Copy docs into actual build
run: Copy-Item -Path "${{ env.qt_doc_build_dir }}/doc" -Destination "${{ env.qt_doc_install_dir }}/doc" -Recurse
- name: Upload Qt build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.qt_build_artifact_name }}
path: ${{ env.qt_install_dir }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-qx-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
if: matrix.os == 'ubuntu-22.04'
run: sudo apt-get install libegl1-mesa-dev
- name: Checkout Qx
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ env.qx_src_suffix }}
fetch-depth: 0 # Required for verbose versioning to work correctly
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
if: matrix.lib_linkage == 'static' && matrix.cxx_comp == 'clang++-14'
run: echo "doc_artifact_name=${{ env.current_artifact_name }}" >> $GITHUB_OUTPUT
- name: Upload Qx build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.current_artifact_name }}
path: ${{ env.qx_install_path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-qx-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install Graphviz
run: choco install graphviz
- name: Checkout PxCrypt
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ env.qx_src_suffix }}
fetch-depth: 0 # Required for verbose versioning to work correctly
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
$artifact_name=$((Get-ChildItem -Path "${{ env.qx_package_path }}" -Filter *.zip)[0].BaseName)
echo "current_artifact_name=$artifact_name" >> $Env:GITHUB_ENV
- name: Upload Qx build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.current_artifact_name }}
path: ${{ env.qx_install_path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/master-pull-request-merge-reaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download built doc Qx artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build_qx_release_linux.outputs.doc_artifact_name }}
path: ${{ env.doc_artifact_path }}
- name: Setup pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
with:
Expand All @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download built Qx artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ${{ env.artifacts_path }}
- name: Zip up release artifacts
Expand Down

0 comments on commit b96d312

Please sign in to comment.