Skip to content

Commit 028200c

Browse files
authored
Update artifact actions (#19701)
1 parent e2cc170 commit 028200c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: .github/workflows/scorecard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4848
# format to the repository Actions tab.
4949
- name: "Upload artifact"
50-
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
50+
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
5151
with:
5252
name: SARIF file
5353
path: results.sarif

Diff for: .github/workflows/test_php_ext.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
bazel build //php:release $BAZEL_FLAGS;
3232
cp bazel-bin/php/protobuf-*.tgz .
3333
34-
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
34+
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
3535
with:
3636
name: protobuf-php-release
3737
path: protobuf-*.tgz
@@ -45,7 +45,7 @@ jobs:
4545
name: Build ${{ matrix.version }}
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
48+
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8
4949
with:
5050
name: protobuf-php-release
5151

Diff for: .github/workflows/test_upb.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ jobs:
147147
bazel: build --crosstool_top=//toolchain:clang_suite --//toolchain:release=true --symlink_prefix=/ -c dbg //python/dist //python/dist:test_wheel //python/dist:source_wheel
148148
- name: Move Wheels
149149
run: mkdir wheels && find _build/out \( -name 'protobuf*.whl' -o -name 'protobuf-*.tar.gz' \) -exec mv '{}' wheels ';'
150-
- uses: actions/upload-artifact@v3
150+
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
151151
with:
152152
name: python-wheels
153153
path: wheels/
154-
- uses: actions/upload-artifact@v3
154+
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
155155
with:
156156
name: requirements
157157
# Tests shouldn't have access to the whole upb repo, upload the one file we need
@@ -194,12 +194,12 @@ jobs:
194194
shell: bash
195195
steps:
196196
- name: Download Wheels
197-
uses: actions/download-artifact@v3
197+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8
198198
with:
199199
name: python-wheels
200200
path: wheels
201201
- name: Download Requirements
202-
uses: actions/download-artifact@v3
202+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8
203203
with:
204204
name: requirements
205205
path: requirements
@@ -252,7 +252,7 @@ jobs:
252252
if: ${{ github.event_name != 'pull_request_target' }}
253253
steps:
254254
- name: Download Wheels
255-
uses: actions/download-artifact@v3
255+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #4.1.8
256256
with:
257257
name: python-wheels
258258
path: wheels

0 commit comments

Comments
 (0)