Skip to content

Commit

Permalink
Update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
nlambriICH committed Oct 25, 2024
1 parent 4a52e88 commit 670f9e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
contents: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Library
- name: Define zip names
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: windows-2019
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Setup env
Expand All @@ -26,9 +26,9 @@ jobs:
cd TMIAutomation\Server
pyinstaller --clean --noconfirm --add-data "models;models" --add-data "config.yml;." --collect-submodules=pydicom src/app.py
- name: Add nuget to PATH
uses: nuget/setup-nuget@v1
uses: nuget/setup-nuget@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2
- name: Install nuget packages
run: nuget restore TMIAutomation\TMIAutomation.csproj -PackagesDirectory packages
- name: Build app for release ESAPI-v15.6
Expand All @@ -37,7 +37,7 @@ jobs:
run: msbuild TMIAutomation\TMIAutomation.csproj -t:Rebuild -p:Configuration=Release-16.1 -p:Platform=x64
- name: Upload artifacts for release
if: ${{ inputs.upload-artifacts }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Library
path: |
Expand Down

0 comments on commit 670f9e2

Please sign in to comment.