Unverified Commit b255b07d authored by Derek Nola's avatar Derek Nola Committed by GitHub

Remove nodejs12 based GH actions (#6593)

parent 9d8260a3
...@@ -26,12 +26,12 @@ jobs: ...@@ -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: ...@@ -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: ...@@ -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: ...@@ -46,7 +46,7 @@ jobs:
INSTALL_K3S_SKIP_DOWNLOAD: binary INSTALL_K3S_SKIP_DOWNLOAD: binary
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
......
...@@ -25,7 +25,7 @@ jobs: ...@@ -25,7 +25,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: ...@@ -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: ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment