mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-28 04:34:19 -04:00
Github CI Updates (#6522)
* Bump unit tests OS * Bump action cache version to v3 * Rework cache naming scheme Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
parent
f4c80a470c
commit
71eacd22aa
5 changed files with 6 additions and 6 deletions
2
.github/workflows/cgroup.yaml
vendored
2
.github/workflows/cgroup.yaml
vendored
|
|
@ -56,7 +56,7 @@ jobs:
|
|||
uses: actions/download-artifact@v2
|
||||
with: { name: k3s, path: dist/artifacts/ }
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.vagrant.d/boxes
|
||||
|
|
|
|||
2
.github/workflows/install.yaml
vendored
2
.github/workflows/install.yaml
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with: {fetch-depth: 1}
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.vagrant.d/boxes
|
||||
|
|
|
|||
4
.github/workflows/nightly-install.yaml
vendored
4
.github/workflows/nightly-install.yaml
vendored
|
|
@ -28,12 +28,12 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
with: {fetch-depth: 1}
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.vagrant.d/boxes
|
||||
~/.vagrant.d/gems
|
||||
key: install-${{ hashFiles(format('tests/install/{0}/Vagrantfile', matrix.vm)) }}
|
||||
key: install-${{ matrix.vm }}-${{ hashFiles('tests/install/${{ matrix.vm }}/Vagrantfile') }}
|
||||
id: vagrant-cache
|
||||
continue-on-error: true
|
||||
- name: "Vagrant Plugin(s)"
|
||||
|
|
|
|||
2
.github/workflows/snapshotter.yaml
vendored
2
.github/workflows/snapshotter.yaml
vendored
|
|
@ -58,7 +58,7 @@ jobs:
|
|||
uses: actions/download-artifact@v2
|
||||
with: { name: k3s, path: dist/artifacts/ }
|
||||
- name: "Vagrant Cache"
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.vagrant.d/boxes
|
||||
|
|
|
|||
2
.github/workflows/unitcoverage.yaml
vendored
2
.github/workflows/unitcoverage.yaml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-18.04, ubuntu-20.04]
|
||||
os: [ubuntu-20.04, ubuntu-22.04]
|
||||
timeout-minutes: 20
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
|||
Loading…
Reference in a new issue