From dabd995365fc339647485c3a0bee0ab59d88fa7e Mon Sep 17 00:00:00 2001 From: Derek Nola Date: Fri, 2 Dec 2022 09:06:53 -0800 Subject: [PATCH] Remove nodejs12 based GH actions (#6595) Signed-off-by: Derek Nola --- .github/workflows/cgroup.yaml | 6 +++--- .github/workflows/install.yaml | 6 +++--- .github/workflows/nightly-install.yaml | 2 +- .github/workflows/snapshotter.yaml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cgroup.yaml b/.github/workflows/cgroup.yaml index 8d25a7bb8c..5bae805d89 100644 --- a/.github/workflows/cgroup.yaml +++ b/.github/workflows/cgroup.yaml @@ -26,12 +26,12 @@ jobs: timeout-minutes: 40 steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: { fetch-depth: 1 } - name: "Build" run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make - name: "Upload" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: { name: k3s, path: dist/artifacts/k3s } test: name: "Conformance Test" @@ -50,7 +50,7 @@ jobs: working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }} steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: { fetch-depth: 1 } - name: "Download Binary" uses: actions/download-artifact@v2 diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 2387dbc1f5..458e57e86e 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -19,13 +19,13 @@ jobs: timeout-minutes: 20 steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 - name: "Make" run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make - name: "Upload k3s binary" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: k3s path: ./dist/artifacts/k3s @@ -46,7 +46,7 @@ jobs: INSTALL_K3S_SKIP_DOWNLOAD: true steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: {fetch-depth: 1} - name: "Vagrant Cache" uses: actions/cache@v3 diff --git a/.github/workflows/nightly-install.yaml b/.github/workflows/nightly-install.yaml index eac804dd29..3341e32a01 100644 --- a/.github/workflows/nightly-install.yaml +++ b/.github/workflows/nightly-install.yaml @@ -21,7 +21,7 @@ jobs: INSTALL_K3S_CHANNEL: ${{ matrix.channel }} steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: {fetch-depth: 1} - name: "Vagrant Cache" uses: actions/cache@v3 diff --git a/.github/workflows/snapshotter.yaml b/.github/workflows/snapshotter.yaml index ac66b6d8a5..3a6744d855 100644 --- a/.github/workflows/snapshotter.yaml +++ b/.github/workflows/snapshotter.yaml @@ -26,12 +26,12 @@ jobs: timeout-minutes: 40 steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: { fetch-depth: 1 } - name: "Build" run: DOCKER_BUILDKIT=1 SKIP_VALIDATE=1 make - name: "Upload Binary" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: { name: k3s, path: dist/artifacts/k3s } test: name: "Smoke Test" @@ -52,7 +52,7 @@ jobs: VAGRANT_EXPERIMENTAL: disks steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: { fetch-depth: 1 } - name: "Download Binary" uses: actions/download-artifact@v2