Skip to content

Commit cff3743

Browse files
authored
Update build configuration to latest (#3607)
1 parent 56486ef commit cff3743

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/buildandtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: dotnet test ${{ env.CSPROJECT }} --no-build --framework ${{ matrix.framework }} --logger trx --configuration ${{ matrix.configuration }} /p:CollectCoverage=true /p:CustomTestTarget=${{ matrix.customtesttarget }} --collect:"XPlat Code Coverage" --settings ./Tests/coverlet.runsettings.xml --results-directory ${{ env.TESTRESULTS }}
5959

6060
- name: Upload test results
61-
uses: actions/upload-artifact@v6
61+
uses: actions/upload-artifact@v7
6262
with:
6363
name: dotnet-results-${{matrix.csproj}}-${{matrix.os}}-${{matrix.framework}}-${{matrix.configuration}}
6464
path: ${{ env.TESTRESULTS }}

.github/workflows/docker-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# https://github.com/docker/login-action
6464
- name: Log into registry ${{ env.REGISTRY }}
6565
if: github.event_name != 'pull_request'
66-
uses: docker/login-action@v3
66+
uses: docker/login-action@v4
6767
with:
6868
registry: ${{ env.REGISTRY }}
6969
username: ${{ github.actor }}
@@ -93,18 +93,18 @@ jobs:
9393
# https://github.com/docker/metadata-action
9494
- name: Extract Docker metadata
9595
id: meta
96-
uses: docker/metadata-action@v5
96+
uses: docker/metadata-action@v6
9797
with:
9898
images: ${{ env.IMAGE_REPOSITORY }}
9999

100100
- name: Set up QEMU
101-
uses: docker/setup-qemu-action@v3
101+
uses: docker/setup-qemu-action@v4
102102

103103
# Build and push Docker image with Buildx (don't push on PR)
104104
# https://github.com/docker/build-push-action
105105
- name: Build and push Docker image
106106
id: build-and-push
107-
uses: docker/build-push-action@v6
107+
uses: docker/build-push-action@v7
108108
with:
109109
context: .
110110
build-args: |

.github/workflows/stability-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
TEST_DURATION_MINUTES: ${{ env.TEST_DURATION_MINUTES }}
6464

6565
- name: Upload test results
66-
uses: actions/upload-artifact@v6
66+
uses: actions/upload-artifact@v7
6767
with:
6868
name: stability-test-results
6969
path: ./TestResults

appveyor.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ branches:
1313

1414
# blacklist
1515
except:
16-
- gh-pages
16+
- gh-pages
17+
18+
build:
19+
project: UA.slnx
20+
parallel: true

0 commit comments

Comments
 (0)