-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix set-output warnings upgrading github actions (#1045)
Upgrading: - actions/[email protected] to @v3.3.1 - action/[email protected] to @v3.0.1 - azure/[email protected] to @v3.4 Gets rid of all the warnings now. Signed-off-by: Jose Luis Vazquez Gonzalez <[email protected]>
- Loading branch information
josvaz
authored
Oct 28, 2022
1 parent
eb74ad6
commit a95b663
Showing
3 changed files
with
12 additions
and
12 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 |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
golangci-lint: ["1.49.0"] | ||
steps: | ||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
id: go | ||
|
@@ -67,7 +67,7 @@ jobs: | |
gosec: ["2.12.0"] | ||
steps: | ||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
id: go | ||
|
@@ -94,7 +94,7 @@ jobs: | |
steps: | ||
|
||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
id: go | ||
|
@@ -148,7 +148,7 @@ jobs: | |
chmod +x ~/bin/kubecfg | ||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ needs.load-versions.outputs.go_version }} | ||
id: go | ||
|
@@ -190,7 +190,7 @@ jobs: | |
echo "CONTROLLER_IMAGE=$controller_registry/$controller_repository:$controller_tag" >> $GITHUB_ENV | ||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ needs.load-versions.outputs.go_version }} | ||
id: go | ||
|
@@ -218,12 +218,12 @@ jobs: | |
kubectl cluster-info | ||
- name: Download manifest artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: controller-manifest | ||
|
||
- name: Download container image artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: controller-image | ||
|
||
|
@@ -258,7 +258,7 @@ jobs: | |
echo "CONTROLLER_IMAGE=$controller_registry/$controller_repository:$controller_tag" >> $GITHUB_ENV | ||
- name: Set up Go 1.x | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ needs.load-versions.outputs.go_version }} | ||
id: go | ||
|
@@ -276,7 +276,7 @@ jobs: | |
kubernetes-version: ${{ matrix.k8s }} | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v3.3 | ||
uses: azure/setup-helm@v3.4 | ||
with: | ||
version: v3.4.2 | ||
|
||
|
@@ -291,7 +291,7 @@ jobs: | |
kubectl cluster-info | ||
- name: Download container image artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: controller-image | ||
|
||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Install Helm | ||
uses: azure/setup-helm@v3.3 | ||
uses: azure/setup-helm@v3.4 | ||
with: | ||
version: v3.4.2 | ||
|
||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
source $GITHUB_WORKSPACE/versions.env | ||
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV | ||
- name: Set up Go | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Setup kubecfg | ||
|