Use glog 0.6 release to run Windows Github workflow

Change-Id: I2853ea13c798c6ef05b3a19a2d3986b514caf1ed
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 374fa94..3c4a5a5 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -67,18 +67,18 @@
         uses: actions/cache@v2
         with:
           path: glog/
-          key: ${{matrix.msvc}}-glog-0.6.0rc1-${{matrix.arch}}-${{matrix.build_type}}-${{matrix.lib}}
+          key: ${{matrix.msvc}}-glog-0.6.0-${{matrix.arch}}-${{matrix.build_type}}-${{matrix.lib}}
 
       - name: Download glog
         if: steps.cache-glog.outputs.cache-hit != 'true'
         run: |
-          (New-Object System.Net.WebClient).DownloadFile("https://github.com/google/glog/archive/refs/tags/v0.6.0-rc1.zip", "v0.6.0-rc1.zip");
-          Expand-Archive -Path v0.6.0-rc1.zip -DestinationPath .;
+          (New-Object System.Net.WebClient).DownloadFile("https://github.com/google/glog/archive/refs/tags/v0.6.0.zip", "v0.6.0.zip");
+          Expand-Archive -Path v0.6.0.zip -DestinationPath .;
 
       - name: Setup glog
         if: steps.cache-glog.outputs.cache-hit != 'true'
         run: |
-          cmake -S glog-0.6.0-rc1 -B build-glog `
+          cmake -S glog-0.6.0 -B build-glog `
                 -DBUILD_SHARED_LIBS=${{matrix.lib == 'shared'}} `
                 -DBUILD_TESTING=OFF `
                 -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/glog `