File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ jobs:
1414
1515 steps :
1616 - name : GIT Checkout
17- uses : actions/checkout@v2
17+ uses : actions/checkout@v6
1818 with :
1919 submodules : ' true'
2020
2121 - name : Fetch Submodules Recursively
2222 run : git submodule update --init --recursive
2323
2424 - name : .NET 8 Setup
25- uses : actions/setup-dotnet@v2
25+ uses : actions/setup-dotnet@v5
2626 with :
2727 dotnet-version : ' 8.0.x'
2828
3333 run : dotnet publish FModel -c Release --no-self-contained -r win-x64 -f net8.0-windows -o "./FModel/bin/Publish/" -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:DebugType=None -p:GenerateDocumentationFile=false -p:DebugSymbols=false -p:AssemblyVersion=${{ github.event.inputs.appVersion }} -p:FileVersion=${{ github.event.inputs.appVersion }}
3434
3535 - name : ZIP File
36- uses : papeloto/action-zip@v1
36+ uses : papeloto/action-zip@v1.2
3737 with :
3838 files : ./FModel/bin/Publish/FModel.exe
3939 dest : FModel.zip # will end up in working directory not the Publish folder
Original file line number Diff line number Diff line change @@ -10,17 +10,17 @@ jobs:
1010
1111 steps :
1212 - name : GIT Checkout
13- uses : actions/checkout@v4
13+ uses : actions/checkout@v6
1414 with :
1515 submodules : ' recursive'
1616
1717 - name : .NET 8 Setup
18- uses : actions/setup-dotnet@v4
18+ uses : actions/setup-dotnet@v5
1919 with :
2020 dotnet-version : ' 8.0.x'
2121
2222 - name : .NET Restore
23- run : dotnet restore FModel
23+ run : dotnet restore "./ FModel/FModel.slnx"
2424
2525 - name : .NET Publish
2626 run : dotnet publish "./FModel/FModel.csproj" -c Release --no-restore --no-self-contained -r win-x64 -f net8.0-windows -o "./FModel/bin/Publish/" -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:DebugType=None -p:GenerateDocumentationFile=false -p:DebugSymbols=false
3333 path : ./FModel/bin/Publish/FModel.exe
3434
3535 - name : Edit QA Artifact
36- uses : ncipollo/release-action@v1.14 .0
36+ uses : ncipollo/release-action@v1.20 .0
3737 with :
3838 token : ${{ secrets.GITHUB_TOKEN }}
3939 name : ' FModel QA Testing'
@@ -51,13 +51,13 @@ jobs:
5151
5252 - name : FModel Auth
5353 id : fmodel_auth
54- uses : fjogeleit/http-request-action@v1.15.5
54+ uses : fjogeleit/http-request-action@v1.16.6
5555 with :
5656 url : " https://api.fmodel.app/v1/oauth/token"
5757 data : ' {"username": "${{ secrets.API_USERNAME }}", "password": "${{ secrets.API_PASSWORD }}"}'
5858
5959 - name : FModel Deploy Build
60- uses : fjogeleit/http-request-action@v1.15.5
60+ uses : fjogeleit/http-request-action@v1.16.6
6161 with :
6262 url : " https://api.fmodel.app/v1/infos/${{ secrets.QA_ID }}"
6363 method : " PATCH"
You can’t perform that action at this time.
0 commit comments