Skip to content

Commit

Permalink
Merge pull request #9 from voruti/renovate/actions-checkout-3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
voruti authored May 4, 2023
2 parents f522ad3 + 47eb46c commit 8f1e290
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build the Docker image
run: docker build . --file Dockerfile --tag voruti/discordlanguagegaming:$(date +%s)
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
on_main: ${{ steps.contains_tag.outputs.retval }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: rickstaa/action-contains-tag@fix_action_retval
Expand All @@ -27,7 +27,10 @@ jobs:
steps:

# --- from docker-image.yml ---
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build the Docker image
run: docker build . --file Dockerfile --tag voruti/discordlanguagegaming:$(date +%s)
# --- from docker-image.yml ---
Expand Down

0 comments on commit 8f1e290

Please sign in to comment.