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

- 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
10 changes: 5 additions & 5 deletions .github/workflows/validate_new_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pull-requests: "read"
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
fetch-depth: 1

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

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

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

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

- name: "Login to Docker registry"
uses: "docker/login-action@v3"
Expand Down
Loading