We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148ca01 commit 11e5e69Copy full SHA for 11e5e69
.github/workflows/secret_artifact_test.yml
@@ -52,14 +52,14 @@ jobs:
52
53
# 8. 上传包含 Secret 的文件作为 Artifact
54
- name: Upload Secret File Artifact
55
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
56
with:
57
name: secret-artifact
58
path: secret.txt
59
60
# 9. 缓存 pip 依赖(如果有 requirements.txt)
61
- name: Cache pip packages
62
- uses: actions/cache@v2
+ uses: actions/cache@v4
63
64
path: ~/.cache/pip
65
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
@@ -99,7 +99,7 @@ jobs:
99
100
# 14. 上传 Docker 镜像 tar 包作为 Artifact(可选)
101
- name: Upload Docker Image Artifact
102
103
104
name: docker-image-artifact
105
path: secret-tester.tar
0 commit comments