diff --git a/.github/workflows/build-test-lint.yml b/.github/workflows/build-test-lint.yml index f383cd0..b10d3ee 100644 --- a/.github/workflows/build-test-lint.yml +++ b/.github/workflows/build-test-lint.yml @@ -14,7 +14,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build env: GOARCH: ${{ matrix.goarch }} @@ -29,7 +29,7 @@ jobs: with: go-version: 1.23.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint run: make lint grpc-check: @@ -41,7 +41,7 @@ jobs: with: go-version: 1.23.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check GRPC run: make grpc-check test: @@ -53,14 +53,14 @@ jobs: with: go-version: 1.23.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run tests run: make test build-image: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Build image @@ -69,7 +69,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 with: @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 with: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 00aca5d..aadcd57 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: language: [go] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: diff --git a/.github/workflows/image-push-main.yml b/.github/workflows/image-push-main.yml index 8104161..c5ab0bb 100644 --- a/.github/workflows/image-push-main.yml +++ b/.github/workflows/image-push-main.yml @@ -12,7 +12,7 @@ jobs: id: repo_name run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up QEMU diff --git a/.github/workflows/image-push-release.yml b/.github/workflows/image-push-release.yml index f45e394..deb4969 100644 --- a/.github/workflows/image-push-release.yml +++ b/.github/workflows/image-push-release.yml @@ -12,7 +12,7 @@ jobs: id: repo_name run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up QEMU