Skip to content

Commit 73db1b5

Browse files
committed
ci: fix configuration cache encryption
1 parent 94824d0 commit 73db1b5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ffmpeg.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v4
6767
- uses: ./.github/actions/deploy-ubuntu
68+
with:
69+
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
6870
linux-arm64:
6971
runs-on: ubuntu-22.04
7072
strategy:
@@ -74,6 +76,8 @@ jobs:
7476
steps:
7577
- uses: actions/checkout@v4
7678
- uses: ./.github/actions/deploy-ubuntu
79+
with:
80+
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
7781
linux-ppc64le:
7882
runs-on: ubuntu-22.04
7983
strategy:
@@ -83,6 +87,8 @@ jobs:
8387
steps:
8488
- uses: actions/checkout@v4
8589
- uses: ./.github/actions/deploy-ubuntu
90+
with:
91+
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
8692
linux-x86:
8793
runs-on: ubuntu-22.04
8894
strategy:
@@ -92,6 +98,8 @@ jobs:
9298
steps:
9399
- uses: actions/checkout@v4
94100
- uses: ./.github/actions/deploy-ubuntu
101+
with:
102+
gradle-cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
95103
linux-x86_64:
96104
runs-on: ubuntu-22.04
97105
strategy:
@@ -155,7 +163,7 @@ jobs:
155163
- name: Setup Gradle
156164
uses: gradle/actions/setup-gradle@v3
157165
with:
158-
cache-encryption-key: ${{ inputs.gradle-cache-encryption-key }}
166+
cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
159167
gradle-home-cache-cleanup: true
160168
build-scan-publish: true
161169
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"

0 commit comments

Comments
 (0)