Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Download Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: arm

Expand All @@ -55,7 +55,7 @@ jobs:
failOnStdErr: true

- name: Download Shifty Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: shifty

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infra-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build ARM template
uses: Azure/bicep-build-action@v1.0.0
Expand All @@ -20,7 +20,7 @@ jobs:
outputFilePath: azuredeploy.json

- name: Store ARM template
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: arm
path: azuredeploy.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shifty-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout codebase
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand All @@ -37,7 +37,7 @@ jobs:
run: dotnet publish --no-restore --configuration Release --output publish
- name: Publish workflow artifact
if: ${{ inputs.publish_artifacts }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: shifty
path: publish/wwwroot
Expand Down
Loading