Skip to content

Commit 0a87623

Browse files
Update GitHub Artifact Actions (#4)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2156c28 commit 0a87623

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build-native.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
echo "PWD: ${PWD}"
6464
echo "Arch: ${BUILD_ARCHITECTURE}"
6565
./tools/build/build_native.sh --build_architecture ${BUILD_ARCHITECTURE}
66-
- uses: actions/upload-artifact@v5
66+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6767
with:
6868
name: build-native-${{ matrix.arch }}
6969
path: |

.github/workflows/build-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
uses: docker/setup-qemu-action@v3
4747
with:
4848
platforms: arm64
49-
- uses: actions/download-artifact@v6
49+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5050
with:
5151
name: build-native-${{ matrix.arch }}
5252
path: prod/native/_build/${{ matrix.arch }}-release/
53-
- uses: actions/download-artifact@v6
53+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5454
with:
5555
name: php-dependencies
5656
- name: Build packages
@@ -59,7 +59,7 @@ jobs:
5959
read_properties project.properties PROJECT_PROPERTIES
6060
6161
./tools/build/build_packages.sh --package_version ${PROJECT_PROPERTIES_VERSION} --build_architecture ${{ matrix.arch }} --package_goarchitecture ${{ matrix.goarch }} --package_types '${{ matrix.packages }}' --package_sha '${{ github.sha }}'
62-
- uses: actions/upload-artifact@v5
62+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6363
with:
6464
name: packages-${{ matrix.arch }}
6565
path: |

.github/workflows/build-php-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
read_properties project.properties PROJECT_PROPERTIES
2727
PHP_VERSIONS=${PROJECT_PROPERTIES_SUPPORTED_PHP_VERSIONS//[()]/}
2828
./tools/build/build_php_deps.sh --php_versions "${PHP_VERSIONS}"
29-
- uses: actions/upload-artifact@v5
29+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3030
with:
3131
name: php-dependencies
3232
path: |

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# uploads of run results in SARIF format to the repository Actions tab.
3434
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
3535
- name: "Upload artifact"
36-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
36+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3737
with:
3838
name: SARIF file
3939
path: results.sarif

.github/workflows/test-phpt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
BUILD_ARCHITECTURE: ${{ matrix.arch }}
4242
steps:
4343
- uses: actions/checkout@v6
44-
- uses: actions/download-artifact@v6
44+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
4545
with:
4646
name: build-native-${{ matrix.arch }}
4747
path: prod/native/_build/${{ matrix.arch }}-release/
@@ -57,7 +57,7 @@ jobs:
5757
read_properties project.properties PROJECT_PROPERTIES
5858
PHP_VERSIONS=${PROJECT_PROPERTIES_SUPPORTED_PHP_VERSIONS//[()]/}
5959
./tools/build/test_phpt.sh --build_architecture ${BUILD_ARCHITECTURE} --results_path ${PWD}/build/test_phpt_results --php_versions "${PHP_VERSIONS}"
60-
- uses: actions/upload-artifact@v5
60+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6161
if: failure()
6262
with:
6363
name: test-phpt-failures-${{ matrix.arch }}

0 commit comments

Comments
 (0)