Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,23 +278,23 @@ jobs:

- name: Upload integration test logs
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: integration-test-logs-${{ matrix.docker-image }}
path: tests/integration/logs/integration_tests_logs.txt
retention-days: 7

- name: Upload PyVista generated images (cache and results)
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: pytest-pyvista-images-${{ matrix.docker-image }}
path: tests/integration/image_cache
retention-days: 7

- name: Upload Coverage Results
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
include-hidden-files: true
name: coverage-html-${{ matrix.docker-image }}
Expand Down Expand Up @@ -459,15 +459,15 @@ jobs:

- name: Upload integration test logs
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: integration-test-logs-${{ matrix.docker-image }}
path: tests/integration/logs/integration_tests_logs.txt
retention-days: 7

- name: Upload PyVista generated images (cache and results)
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: pytest-pyvista-images-${{ matrix.docker-image }}
path: tests/integration/image_cache
Expand Down Expand Up @@ -662,14 +662,14 @@ jobs:
cp ./$env:PREVIOUS_VERSION/linux-core-binaries.zip linux-core-binaries.zip

- name: Upload Linux Core service binaries as workflow artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: linux-core-binaries.zip
path: linux-core-binaries.zip
retention-days: 1

- name: Upload Windows Core service binaries as workflow artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: windows-core-binaries.zip
path: windows-core-binaries.zip
Expand Down Expand Up @@ -718,7 +718,7 @@ jobs:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Download Windows binaries for ${{ matrix.mode }}
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: ${{ matrix.zip-file }}
path: docker/${{ matrix.zip-file }}
Expand Down Expand Up @@ -779,7 +779,7 @@ jobs:
dest: ${{ matrix.docker-file }}

- name: Upload Windows Dockerfile
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: ${{ matrix.docker-file }}
path: ${{ matrix.docker-file }}
Expand Down Expand Up @@ -830,7 +830,7 @@ jobs:
uses: pyvista/setup-headless-display-action@7d84ae825e6d9297a8e99bdbbae20d1b919a0b19 # v4.2

- name: Download Linux binaries
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: linux-core-binaries.zip
path: docker/linux-core-binaries.zip
Expand Down Expand Up @@ -878,7 +878,7 @@ jobs:
dest: linux-core-dockerfile.zip

- name: Upload Linux Dockerfile
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: linux-core-dockerfile.zip
path: linux-core-dockerfile.zip
Expand Down Expand Up @@ -923,7 +923,7 @@ jobs:
contents: write
steps:
- name: "Download the library artifacts from build-library step"
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: ${{ env.PACKAGE_NAME }}-artifacts
path: ${{ env.PACKAGE_NAME }}-artifacts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
with:
languages: 'python'
config-file: ./.github/codeql-config.yml

- name: Autobuild
uses: github/codeql-action/autobuild@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
uses: github/codeql-action/autobuild@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
Expand All @@ -42,6 +42,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
with:
category: "/language:python"
1 change: 1 addition & 0 deletions doc/changelog.d/2343.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump the actions group with 3 updates
Loading