Skip to content

Commit

Permalink
Remove nodejs12 based GH actions (#6593)
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Dec 2, 2022
1 parent 9d8260a commit b255b07
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cgroup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -46,7 +46,7 @@ jobs:
INSTALL_K3S_SKIP_DOWNLOAD: binary
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3
with: {fetch-depth: 1}
- name: "Vagrant Cache"
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/snapshotter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit b255b07

Please sign in to comment.