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: 1 addition & 3 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/checkout@v3
- name: Build Docker image
run: docker build .
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Run envsubst
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.idea/
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.11.6
FROM alpine:3.17

LABEL version="1.0.1"
LABEL version="1.0.2"
LABEL maintainer="nownabe"
LABEL com.github.actions.name="Simple Envsubst"
LABEL com.github.actions.description="Substitutes the values of environment variables"
LABEL com.github.actions.icon="file-text"
LABEL com.github.actions.color="red"

RUN apk add --update --no-cache gettext=0.20.1-r2
RUN apk add --update --no-cache gettext=0.21.1-r1

COPY ./entrypoint.sh /entrypoint.sh

Expand Down