From 2147ae12fe0178e2facb2bc1712f8f051958d809 Mon Sep 17 00:00:00 2001 From: David Rouyer Date: Thu, 15 Oct 2020 13:48:46 +0200 Subject: [PATCH] chore: bump GitHub action version --- .github/workflows/main.yml | 4 ++-- .vscode/settings.json | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1d7b7bd..6964a2d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,12 +13,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.1.100 + dotnet-version: '3.1.x' - name: Run unit tests run: | diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..fed8fba3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,18 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#fbed80", + "activityBar.activeBorder": "#06b9a5", + "activityBar.background": "#fbed80", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#06b9a5", + "activityBarBadge.foreground": "#15202b", + "statusBar.background": "#f9e64f", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#f7df1e", + "titleBar.activeBackground": "#f9e64f", + "titleBar.activeForeground": "#15202b", + "titleBar.inactiveBackground": "#f9e64f99", + "titleBar.inactiveForeground": "#15202b99" + } +} \ No newline at end of file