Skip to content

Commit 47463fd

Browse files
Update version to 0.4. Bump for bash and git.
1 parent 9d89ccc commit 47463fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ RUN set -eux \
5050
chmod +x /entrypoint.sh ;\
5151
apk update --no-cache ;\
5252
apk add --no-cache \
53-
bash~=5.1.4 \
54-
git~=2.32.0 ;\
53+
bash~=5.1.8 \
54+
git~=2.34.1 ;\
5555
rm -rf /var/cache/* ;\
5656
rm -rf /root/.cache/*
5757

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
phony: help
33

44
# Release tag for the action
5-
VERSION := v0.3
5+
VERSION := v0.4
66

77
# GitHub Actions bogus variables
88
GITHUB_REF ?= refs/heads/null

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: |
8080
find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g"
8181
- name: Commit and push changes
82-
uses: devops-infra/action-commit-push@v0.3
82+
uses: devops-infra/action-commit-push@v0.4
8383
with:
8484
github_token: ${{ secrets.GITHUB_TOKEN }}
8585
commit_message: Replaced foo with bar
@@ -100,7 +100,7 @@ jobs:
100100
run: |
101101
find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g"
102102
- name: Commit and push changes
103-
uses: devops-infra/action-commit-push@v0.3
103+
uses: devops-infra/action-commit-push@v0.4
104104
with:
105105
github_token: ${{ secrets.GITHUB_TOKEN }}
106106
commit_prefix: "[AUTO-COMMIT] foo/bar replace"

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ outputs:
3333
description: Name of the branch code was pushed into
3434
runs:
3535
using: docker
36-
image: docker://devopsinfra/action-commit-push:v0.3
36+
image: docker://devopsinfra/action-commit-push:v0.4
3737
env:
3838
GITHUB_TOKEN: ${{ inputs.github_token }}
3939
branding:

0 commit comments

Comments
 (0)