chore(actions): move setup-pesde action into dir

* Properly treat setup-pesde as an individual action instead of a
  workflow. This includes moving it into .github/actions/setup-pesde.
* Update workflow usage of setup-pesde accordingly.
This commit is contained in:
Erica Marigold 2024-11-21 19:01:33 +00:00
parent a3bcdf6e44
commit 0023e10209
Signed by: DevComp
GPG key ID: 429EF1C337871656
3 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ jobs:
cache: true
- name: Install pesde
uses: ./.github/workflows/pesde.yml
uses: ./.github/actions/setup-pesde
with:
pesde-token: ${{ secrets.PESDE_TOKEN }}
@ -45,7 +45,7 @@ jobs:
cache: true
- name: Install pesde
uses: ./.github/workflows/pesde.yml
uses: ./.github/actions/setup-pesde
with:
pesde-token: ${{ secrets.PESDE_TOKEN }}
@ -68,7 +68,7 @@ jobs:
cache: true
- name: Install pesde
uses: ./.github/workflows/pesde.yml
uses: ./.github/actions/setup-pesde
with:
pesde-token: ${{ secrets.PESDE_TOKEN }}

View file

@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4
- name: Install pesde
uses: ./.github/workflows/pesde.yml
uses: ./.github/actions/setup-pesde
with:
pesde-token: ${{ secrets.PESDE_TOKEN }}