Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3 -> v4 #13

Merged
merged 1 commit into from
Dec 15, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/_push.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"steps": [{
"name": "clone repository",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
}, {
"name": "install docker-qemu",
"uses": "docker/setup-qemu-action@v3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
tag_l: dojyorin/deno:latest
steps:
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install docker-qemu
uses: docker/setup-qemu-action@v3
- name: login dockerhub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"steps": [{
"name": "clone repository",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
}, {
"name": "install docker-qemu",
"uses": "docker/setup-qemu-action@v3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- distroless
steps:
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install docker-qemu
uses: docker/setup-qemu-action@v3
- name: build image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"runs-on": "ubuntu-latest",
"steps": [{
"name": "clone repository",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
}, {
"name": "dispatch release",
"uses": "softprops/action-gh-release@v1",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: dispatch release
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Now, let's start using it!

|OS|Tags|Arch|
|:--|:--|:--|
|Distroless|`latest` `vX.Y.Z` `distroless` `distroless-vX.Y.Z`|`amd64`|
|Distroless (default)|`latest` `vX.Y.Z` `distroless` `distroless-vX.Y.Z`|`amd64`|
|Alpine|`alpine` `alpine-vX.Y.Z`|`amd64`|

# How to use
Expand Down