-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first commit * first commit * kubectl action update * install kind version * kubectl version * kubectl version * changelog * Update pull_request.yaml * install_only: false
- Loading branch information
Brendan Slabe
authored
Apr 6, 2023
1 parent
21d2f67
commit 767d2c9
Showing
2 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,28 +16,29 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/cancel-workflow-action@0.4.0 | ||
uses: styfle/cancel-workflow-action@0.11.0 | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go 1.18.2 | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.18.2 | ||
- uses: actions/cache@v1 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go | ||
- uses: azure/setup-kubectl@v1 | ||
- uses: azure/setup-kubectl@v3 | ||
with: | ||
version: ${{ env.KUBE_VERSION }} | ||
- uses: engineerd/[email protected] | ||
- name: Install kind | ||
uses: helm/[email protected] | ||
with: | ||
image: "kindest/node:${{ env.KUBE_VERSION }}" | ||
node_image: "kindest/node:${{ env.KUBE_VERSION }}" | ||
- name: Run tests | ||
env: | ||
TEST_PKG: ./... # Run all tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
changelog: | ||
- type: NON_USER_FACING | ||
issueLink: https://github.com/solo-io/solo-projects/issues/4708 | ||
resolvesIssue: false | ||
description: Updated various github actions due to deprecated methods, images, or libraries. |