Skip to content

Commit

Permalink
Merge pull request #1374 from k1rnt/fix/gha-set-output-command
Browse files Browse the repository at this point in the history
fix(ci): replace set-output to GITHUB_OUTPUT
  • Loading branch information
bentrengrove committed Oct 24, 2022
2 parents 1d82bad + b5b0347 commit 70c51e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-snapshot.yml
Expand Up @@ -129,7 +129,7 @@ jobs:
if [ "$API_LEVEL" -ge "28" ]; then
TARGET="google_apis"
fi
echo "::set-output name=TARGET::$TARGET"
echo "TARGET=$TARGET" >> $GITHUB_OUTPUT
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -127,7 +127,7 @@ jobs:
if [ "$API_LEVEL" -ge "28" ]; then
TARGET="google_apis"
fi
echo "::set-output name=TARGET::$TARGET"
echo "TARGET=$TARGET" >> $GITHUB_OUTPUT
- name: Determine emulator arch
id: determine-arch
env:
Expand All @@ -137,7 +137,7 @@ jobs:
if [ "$API_LEVEL" -ge "31" ]; then
ARCH="x86_64"
fi
echo "::set-output name=ARCH::$ARCH"
echo "ARCH=$ARCH" >> $GITHUB_OUTPUT
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/device-tests.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
if [ "$API_LEVEL" -ge "29" ]; then
TARGET="google_apis"
fi
echo "::set-output name=TARGET::$TARGET"
echo "TARGET=$TARGET" >> $GITHUB_OUTPUT
- name: Run device tests
uses: reactivecircus/android-emulator-runner@v2
Expand Down

0 comments on commit 70c51e8

Please sign in to comment.