diff --git a/.github/workflows/build_and_push_docker_image.yml b/.github/workflows/build_and_push_docker_image.yml index fcf4e5a..86f90db 100644 --- a/.github/workflows/build_and_push_docker_image.yml +++ b/.github/workflows/build_and_push_docker_image.yml @@ -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\"" diff --git a/.github/workflows/validate_new_changes.yml b/.github/workflows/validate_new_changes.yml index dd8fb27..2831530 100644 --- a/.github/workflows/validate_new_changes.yml +++ b/.github/workflows/validate_new_changes.yml @@ -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 @@ -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" @@ -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" @@ -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" @@ -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" @@ -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/"