Skip to content

Commit

Permalink
XS✔ ◾ Update actions/download-artifact (#719)
Browse files Browse the repository at this point in the history
* fix: update actions/download-artifact

* fix: update other actions
  • Loading branch information
AttackOnMorty authored Oct 2, 2024
1 parent 7807c39 commit 3ba47a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/SSW.SophieBot.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@ jobs:
runs-on: ubuntu-latest
environment: dev
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4

- name: Use Node 16.x
uses: actions/setup-node@v2.4.0
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: "20"
- name: Use BF CLI
run: npm install -g @microsoft/botframework-cli
- name: Use .Net sdk 6.0.x
uses: actions/setup-dotnet@v1.9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "6.0.x"

- name: Create appsettings file
uses: jsdaniell/create-json@1.1.2
uses: jsdaniell/create-json@1.1.3
with:
name: "appsettings.json"
json: ${{ secrets.BOT_APP_APPSETTINGS }}
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
with:
dotnet-version: "6.0.x"

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
Expand All @@ -180,7 +180,7 @@ jobs:
steps:
- uses: actions/checkout@v2.3.4

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: "LUIS_Migrator_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/luis-migrator
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/SSW.SophieBot.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ jobs:
runs-on: ubuntu-latest
environment: prod
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4

- name: Use Node 16.x
uses: actions/setup-node@v2.4.0
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: "20"
- name: Use BF CLI
run: npm install -g @microsoft/botframework-cli
- name: Use .Net sdk 6.0.x
uses: actions/setup-dotnet@v1.9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "6.0.x"

- name: Create appsettings file
uses: jsdaniell/create-json@1.1.2
uses: jsdaniell/create-json@1.1.3
with:
name: "appsettings.json"
json: ${{ secrets.BOT_APP_APPSETTINGS }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
with:
dotnet-version: "6.0.x"

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
Expand All @@ -170,7 +170,7 @@ jobs:
steps:
- uses: actions/checkout@v2.3.4

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: "LUIS_Migrator_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/luis-migrator
Expand Down

0 comments on commit 3ba47a2

Please sign in to comment.