Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/package-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: Build and push docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v2
- uses: actions/checkout@v5
- uses: docker/login-action@v3
with:
username: ${{ secrets.BYD_DOCKERHUB_USER }}
password: ${{ secrets.BYD_DOCKERHUB_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ outputs:
runs:
using: 'composite'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Download generated messaging helm values ⬇️
if: ${{ inputs.has-messaging == 'true' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: message-artifact-values
path: build/message-artifacts-helm
Expand Down
2 changes: 1 addition & 1 deletion package-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine/helm:3.13.2
FROM alpine/helm:3.18.6

RUN apk add --no-cache bash curl git

Expand Down