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
2 changes: 1 addition & 1 deletion .github/workflows/check_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- uses: actions/checkout@v3.1.0 # https://github.com/actions/checkout
- uses: dudo/tag_check@v1.1.1
with:
git_tag_prefix: v
2 changes: 1 addition & 1 deletion .github/workflows/docker_feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build and push Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- uses: actions/checkout@v3.1.0 # https://github.com/actions/checkout
- name: Set ENV
run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV
- uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Build and push Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- uses: actions/checkout@v3.1.0 # https://github.com/actions/checkout
- name: Set ENV
run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV
- uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/git_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
outputs:
git_tag_name: ${{ steps.tag_check.outputs.git_tag_name }}
steps:
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- uses: actions/checkout@v3.1.0 # https://github.com/actions/checkout
- uses: dudo/tag_check@v1.1.1
id: tag_check
with:
Expand All @@ -29,7 +29,7 @@ jobs:
"https://api.github.com/repos/${GITHUB_REPOSITORY}/git/refs"
- name: Set ENV
run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV
- uses: actions/checkout@v2 # https://github.com/actions/checkout
- uses: actions/checkout@v3.1.0 # https://github.com/actions/checkout
- name: Push Image to GitHub
uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images
with:
Expand Down