From d795b49f16ef77bf7453af228d121a1f7de5f1f9 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Tue, 12 Sep 2023 12:50:13 -0400
Subject: [PATCH] SL-19243: Job step 'uses' must specify action.yaml file

instead of having it implied by specifying the containing directory.
---
 .github/workflows/build.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 7c1489e7fda..8157b9559f7 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -275,7 +275,7 @@ jobs:
           path: .util
 
       - name: Post Windows symbols
-        uses: .util/post-bugsplat-windows
+        uses: .util/post-bugsplat-windows/action.yaml
         with:
           username: ${{ secrets.BUGSPLAT_USER }}
           password: ${{ secrets.BUGSPLAT_PASS }}
@@ -295,7 +295,7 @@ jobs:
           path: .util
 
       - name: Post Mac symbols
-        uses: .util/post-bugsplat-mac
+        uses: .util/post-bugsplat-mac/action.yaml
         with:
           username: ${{ secrets.BUGSPLAT_USER }}
           password: ${{ secrets.BUGSPLAT_PASS }}
-- 
GitLab