Skip to content
Closed
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/build_and_push_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Add short hash of current commit to environment variables"
run: "echo \"CURRENT_COMMIT_SHORT_HASH=$(git rev-parse --short \"$GITHUB_SHA\")\" >> \"$GITHUB_ENV\""
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validate_new_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
pull-requests: "read"
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"
with:
fetch-depth: 1

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Set up Docker Buildx"
uses: "docker/setup-buildx-action@v3"
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Login to Docker registry"
uses: "docker/login-action@v3"
Expand All @@ -174,7 +174,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Login to Docker registry"
uses: "docker/login-action@v3"
Expand All @@ -197,7 +197,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Login to Docker registry"
uses: "docker/login-action@v3"
Expand All @@ -220,7 +220,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v5"

- name: "Build code"
run: "go build -ldflags \"-s -w\" -o file_path_validator ./cmd/file_path_validator/"
Expand Down
Loading