Skip to content

Commit

Permalink
bump action version where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
waldner committed Mar 29, 2024
1 parent af90970 commit 0239d7d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}"
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand All @@ -44,7 +44,7 @@ jobs:
run: TEST_ZONE_NAME=${{ secrets.HE_ZONE }}. make test

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
if: inputs.event_name != 'pull_request'
Expand All @@ -64,7 +64,7 @@ jobs:
DRY_RUN: true

- name: Build and push Docker image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}"
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install helm
uses: Azure/setup-helm@v3
uses: Azure/setup-helm@v4
with:
version: v${{ env.HELM_VERSION }}

Expand All @@ -44,7 +44,7 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
helm push ${CHART_NAME}-${{ steps.bump-chart-semver.outputs.new_version }}.tgz oci://${{ env.REGISTRY }}/${{ github.repository_owner }}/charts
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: "${{ env.CHART_DIR }}/*"
commit_message: "Autoupdate: image tag (values.yaml) to ${{ steps.image-tag.outputs.tag }}, chart tag (Chart.yaml) to ${{ steps.bump-chart-semver.outputs.new_version }}"
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
docker: ${{ steps.filter.outputs.docker }}
helm: ${{ steps.filter.outputs.helm }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout project to determine changed files
with:
fetch-depth: 0
- uses: dorny/paths-filter@v2
- uses: dorny/paths-filter@v3
id: filter
with:
base: master
Expand Down

0 comments on commit 0239d7d

Please sign in to comment.