summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-09-12 12:50:13 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-09-12 12:50:13 -0400
commitd795b49f16ef77bf7453af228d121a1f7de5f1f9 (patch)
tree905adfd7a72c57cd9525a8ce7837377611ceb77b /.github/workflows
parent0992a0af3bc1d9c78d611c3778eca86b575dbe4c (diff)
SL-19243: Job step 'uses' must specify action.yaml file
instead of having it implied by specifying the containing directory.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 7c1489e7fd..8157b9559f 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 }}