diff --git a/.github/workflows/build-branch.yml b/.github/workflows/build-branch.yml index 05a0e01..8560bf6 100644 --- a/.github/workflows/build-branch.yml +++ b/.github/workflows/build-branch.yml @@ -37,7 +37,7 @@ jobs: - name: Build id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./ file: Dockerfile diff --git a/.github/workflows/build-tag.yml b/.github/workflows/build-tag.yml index a33d907..6cdc754 100644 --- a/.github/workflows/build-tag.yml +++ b/.github/workflows/build-tag.yml @@ -36,7 +36,7 @@ jobs: - name: Build id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./ file: Dockerfile diff --git a/.github/workflows/cron-remove-label.yaml b/.github/workflows/cron-remove-label.yaml index c0286c9..cdbc5ed 100644 --- a/.github/workflows/cron-remove-label.yaml +++ b/.github/workflows/cron-remove-label.yaml @@ -8,7 +8,7 @@ jobs: labeling: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | // MEMO: please comment out the follwoing if you execute this script in local diff --git a/.github/workflows/gitops-prd.yml b/.github/workflows/gitops-prd.yml index f45779c..f3390ee 100644 --- a/.github/workflows/gitops-prd.yml +++ b/.github/workflows/gitops-prd.yml @@ -60,7 +60,7 @@ jobs: branch: production/weaver-main - name: Create and Merge Pull Request - uses: "actions/github-script@v6" + uses: "actions/github-script@v7" with: github-token: ${{ steps.generate_token.outputs.token }} script: | diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index ebd2af1..28557e7 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -27,13 +27,13 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod cache-dependency-path: go.sum - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: latest args: --timeout 3m0s diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 66d8ee6..de3da61 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: go.mod cache-dependency-path: go.sum