diff options
| author | Albin <albin@mullvad.net> | 2022-10-31 15:10:07 +0100 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2022-11-01 15:34:21 +0100 |
| commit | a3d261fea470a045b11b89d07db912c3924798c4 (patch) | |
| tree | abf8ab5b430fbd9951e749c8a2d007f3cbafca7b /.github | |
| parent | 285b5fa8199ab61228a2a9c7094802e17cf00024 (diff) | |
| download | mullvadvpn-a3d261fea470a045b11b89d07db912c3924798c4.tar.xz mullvadvpn-a3d261fea470a045b11b89d07db912c3924798c4.zip | |
Fix deprecated output variable in gh actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/android-app.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index a7a2cb0141..f4dd766a8d 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -66,7 +66,7 @@ jobs: shell: bash run: | non_android_hash="$(git grep --cached -l '' -- ':!android/' | xargs -d '\n' sha1sum | sha1sum | awk '{print $1}')" - echo "::set-output name=native_lib_hash::$non_android_hash" + echo "native_lib_hash=$non_android_hash" >> $GITHUB_OUTPUT - name: Cache native libraries uses: actions/cache@v2 |
