Skip to content

Commit

Permalink
Fix set-output warnings upgrading github actions (#1045)
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a95b663

Please sign in to comment.