diff --git a/.github/workflows/automated-prs-manager.yaml b/.github/workflows/automated-prs-manager.yaml index a9ccdf0..49d3d8b 100644 --- a/.github/workflows/automated-prs-manager.yaml +++ b/.github/workflows/automated-prs-manager.yaml @@ -14,7 +14,7 @@ jobs: GH_TOKEN: ${{ secrets.REPLICATED_GH_PAT }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: List PRs id: list-prs @@ -46,7 +46,7 @@ jobs: GH_TOKEN: ${{ secrets.REPLICATED_GH_PAT }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ matrix.pr.headRefName }} diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 1be4ee7..edf5e42 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build the Docker image run: docker build . -f deploy/Dockerfile --tag replicated/local-volume-provider:$(date +%s) @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: diff --git a/.github/workflows/daily-scan.yaml b/.github/workflows/daily-scan.yaml index 3c09fde..919d414 100644 --- a/.github/workflows/daily-scan.yaml +++ b/.github/workflows/daily-scan.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run Trivy vulnerability scanner in repo mode uses: aquasecurity/trivy-action@master @@ -34,7 +34,7 @@ jobs: go-version: "1.24" - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - uses: ./.github/actions/build-push-lvp-image with: diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3076458..21af251 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - id: get_version uses: battila7/get-version-action@v2 - uses: ./.github/actions/build-push-lvp-image