Skip to content

Commit

Permalink
fix: update actions/upload-artifact (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
AttackOnMorty authored Oct 2, 2024
1 parent 23d2c83 commit 7807c39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/SSW.SophieBot.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
# Upload bot models artifact
- name: Upload bot models artifact
if: env.BUILD_FLOW == 'composer'
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: "Bot_Models_${{ github.run_id }}"
path: ${{ env.BOT_PROJECT_DIR }}/generated
Expand All @@ -132,15 +132,15 @@ jobs:

# Upload webapp artifact
- name: Upload webapp artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
if-no-files-found: error

# Upload LUIS migrator artifact
- name: Upload LUIS migrator artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "LUIS_Migrator_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/luis-migrator
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/SSW.SophieBot.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
# Upload bot models artifact
- name: Upload bot models artifact
if: env.BUILD_FLOW == 'composer'
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: "Bot_Models_${{ github.run_id }}"
path: ${{ env.BOT_PROJECT_DIR }}/generated
Expand All @@ -122,15 +122,15 @@ jobs:

# Upload webapp artifact
- name: Upload webapp artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
if-no-files-found: error

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

0 comments on commit 7807c39

Please sign in to comment.