Skip to content

Commit 7f457b8

Browse files
committed
update CI builds
1 parent 8337e42 commit 7f457b8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: Visual Studio 2022
1+
image: Visual Studio 2026
22

33
branches:
44
except:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
exit 1
2424
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0 # Mandatory to use exact version from tag action
2929

3030
- name: Setup .NET
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
global-json-file: global.json
3434

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ matrix:
3131

3232
install:
3333
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
34-
- curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 9.0 --version latest --install-dir "$DOTNET_INSTALL_DIR"
34+
- curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 10.0 --version latest --install-dir "$DOTNET_INSTALL_DIR"
3535
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
3636
- if test "$TRAVIS_OS_NAME" == "osx"; then export DYLD_LIBRARY_PATH=/usr/local/opt/openssl/lib; fi
3737

3838
before_script:
3939
- dotnet --info
4040

4141
script:
42-
- dotnet test Remote.Linq.sln -c $CONFIGURATION -f net9.0
42+
- dotnet test Remote.Linq.sln -c $CONFIGURATION -f net10.0

0 commit comments

Comments
 (0)