mirror of https://github.com/k3s-io/k3s
Remove nodejs12 based GH actions (#6595)
Signed-off-by: Derek Nola <derek.nola@suse.com>pull/6623/head
parent
d5ef9e1a12
commit
dabd995365
|
@ -26,12 +26,12 @@ jobs:
|
||||||
timeout-minutes: 40
|
timeout-minutes: 40
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: { fetch-depth: 1 }
|
with: { fetch-depth: 1 }
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
||||||
- name: "Upload"
|
- name: "Upload"
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with: { name: k3s, path: dist/artifacts/k3s }
|
with: { name: k3s, path: dist/artifacts/k3s }
|
||||||
test:
|
test:
|
||||||
name: "Conformance Test"
|
name: "Conformance Test"
|
||||||
|
@ -50,7 +50,7 @@ jobs:
|
||||||
working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }}
|
working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }}
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: { fetch-depth: 1 }
|
with: { fetch-depth: 1 }
|
||||||
- name: "Download Binary"
|
- name: "Download Binary"
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
|
|
|
@ -19,13 +19,13 @@ jobs:
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
- name: "Make"
|
- name: "Make"
|
||||||
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
||||||
- name: "Upload k3s binary"
|
- name: "Upload k3s binary"
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: k3s
|
name: k3s
|
||||||
path: ./dist/artifacts/k3s
|
path: ./dist/artifacts/k3s
|
||||||
|
@ -46,7 +46,7 @@ jobs:
|
||||||
INSTALL_K3S_SKIP_DOWNLOAD: true
|
INSTALL_K3S_SKIP_DOWNLOAD: true
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: {fetch-depth: 1}
|
with: {fetch-depth: 1}
|
||||||
- name: "Vagrant Cache"
|
- name: "Vagrant Cache"
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
|
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
INSTALL_K3S_CHANNEL: ${{ matrix.channel }}
|
INSTALL_K3S_CHANNEL: ${{ matrix.channel }}
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: {fetch-depth: 1}
|
with: {fetch-depth: 1}
|
||||||
- name: "Vagrant Cache"
|
- name: "Vagrant Cache"
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
|
|
|
@ -26,12 +26,12 @@ jobs:
|
||||||
timeout-minutes: 40
|
timeout-minutes: 40
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: { fetch-depth: 1 }
|
with: { fetch-depth: 1 }
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make
|
||||||
- name: "Upload Binary"
|
- name: "Upload Binary"
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with: { name: k3s, path: dist/artifacts/k3s }
|
with: { name: k3s, path: dist/artifacts/k3s }
|
||||||
test:
|
test:
|
||||||
name: "Smoke Test"
|
name: "Smoke Test"
|
||||||
|
@ -52,7 +52,7 @@ jobs:
|
||||||
VAGRANT_EXPERIMENTAL: disks
|
VAGRANT_EXPERIMENTAL: disks
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with: { fetch-depth: 1 }
|
with: { fetch-depth: 1 }
|
||||||
- name: "Download Binary"
|
- name: "Download Binary"
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
|
|
Loading…
Reference in New Issue