Skip to content

Commit 0a175a3

Browse files
committed
MSYS2 - msys2-keyring-1~20210213-1
1 parent a4f0db3 commit 0a175a3

File tree

6 files changed

+66
-72
lines changed

6 files changed

+66
-72
lines changed

.github/workflows/ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [ ubuntu-20.04, ubuntu-latest, macos-latest ]
12+
os: [ ubuntu-20.04, ubuntu-18.04, macos-10.15 ]
1313
ruby: [ ruby-head, 2.7, 2.5, 2.2, jruby, truffleruby ]
1414
runs-on: ${{ matrix.os }}
1515
steps:
@@ -43,9 +43,9 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
os: [ windows ]
46+
os: [ windows-2019 ]
4747
ruby: [ mswin, mingw, 2.5, 2.4, 2.3, 2.2 ]
48-
runs-on: ${{ matrix.os }}-latest
48+
runs-on: ${{ matrix.os }}
4949
steps:
5050
- name: Checkout
5151
uses: actions/checkout@v2

common.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,9 @@ export const win2nix = (path) => {
104104
path).replace(/\\/g, '/').replace(/ /g, '\\ ')
105105
}
106106

107-
108-
// Note
109-
// https://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz
110107
export const updateKeyRing = async (vers) => {
111108
const dlPath = `${process.env.RUNNER_TEMP}\\srp`
112-
const uri = `https://repo.msys2.org/msys/x86_64/msys2-keyring-${vers}-any.pkg.tar.xz`
109+
const uri = `https://repo.msys2.org/msys/x86_64/msys2-keyring-${vers}-any.pkg.tar.zst`
113110
const fn = `${dlPath}\\key-ring.tar.xz`
114111
const msSt = grpSt('install updated MSYS2 keyring')
115112

0 commit comments

Comments
 (0)