Skip to content

Commit

Permalink
update all actions to node20
Browse files Browse the repository at this point in the history
  • Loading branch information
waldner committed Mar 30, 2024
1 parent 0239d7d commit 64bf623
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.21

Expand All @@ -48,7 +48,7 @@ jobs:

- name: Log in to the Container registry
if: inputs.event_name != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
cmd: yq -r .version "$CHART_DIR/Chart.yaml"

- name: bump chart version
uses: actions-ecosystem/action-bump-semver@v1
#uses: actions-ecosystem/action-bump-semver@v1
uses: fiddlermikey/action-bump-semver@main
id: bump-chart-semver
with:
current_version: ${{ steps.chart-get-semver.outputs.result }}
Expand All @@ -79,7 +80,7 @@ jobs:

- name: Log in to the Container registry
if: github.ref_type != 'pull_request'
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
var GroupName = os.Getenv("GROUP_NAME")

func main() {

if GroupName == "" {
panic("GROUP_NAME must be specified")
}
Expand Down

0 comments on commit 64bf623

Please sign in to comment.