diff --git a/.github/workflows/continuous_delivery.yml b/.github/workflows/continuous_delivery.yml index 292b35c7..289d27b5 100644 --- a/.github/workflows/continuous_delivery.yml +++ b/.github/workflows/continuous_delivery.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Log in to Docker Hub Container Registry uses: docker/login-action@v2 with: diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 70699232..600fa60e 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -20,7 +20,7 @@ jobs: go-version: '1.20' cache: false - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run linters uses: golangci/golangci-lint-action@v3 with: @@ -39,7 +39,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build testing environment run: make build build-tests - name: Run tests