File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ jobs:
3434 fi
3535
3636 - name : Checkout code
37- uses : actions/checkout@v4
37+ uses : actions/checkout@v6
3838 with :
3939 fetch-depth : 0
4040
4141 - name : Calculate go version
4242 run : echo "go_version=$(make go-version)" >> $GITHUB_ENV
4343
4444 - name : Set up Go
45- uses : actions/setup-go@v5
45+ uses : actions/setup-go@v6
4646 with :
4747 go-version : ${{ env.go_version }}
4848
6767 type=raw,value=latest,enable={{is_default_branch}}
6868
6969 - name : Build and push multi-arch image
70- uses : docker/build-push-action@v5
70+ uses : docker/build-push-action@v6
7171 with :
7272 context : .
7373 file : ./Dockerfile
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ jobs:
1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : Check out code into the Go module directory
22- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # tag=v5.0.0
22+ uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # tag=v4.3.1
2323 - name : Calculate go version
2424 id : vars
2525 run : echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
2626 - name : Set up Go
27- uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # tag=v5.5 .0
27+ uses : actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1 .0
2828 with :
2929 go-version : ${{ steps.vars.outputs.go_version }}
30- - uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # tag=v4.2.4
30+ - uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag=v4.3.0
3131 name : Restore go cache
3232 with :
3333 path : |
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ jobs:
2222 - name : Set env
2323 run : echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
2424 - name : checkout code
25- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # tag=v5.0.0
25+ uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # tag=v4.3.1
2626 with :
2727 fetch-depth : 0
2828 - name : Calculate go version
2929 run : echo "go_version=$(make go-version)" >> $GITHUB_ENV
3030 - name : Set up Go
31- uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # tag=v5.5 .0
31+ uses : actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1 .0
3232 with :
3333 go-version : ${{ env.go_version }}
3434 - name : generate release artifacts
4646 env :
4747 GH_TOKEN : ${{ github.token }}
4848 - name : Release
49- uses : softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # tag=v2.3 .2
49+ uses : softprops/action-gh-release@5be0e66d93ac7ed76da52eca8bb058f665c3a5fe # tag=v2.4 .2
5050 with :
5151 draft : true
5252 files : out/*
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ jobs:
1818 runs-on : ubuntu-latest
1919 steps :
2020 - name : Check out code
21- uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # tag=v5.0.0
21+ uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # tag=v4.3.1
2222 with :
2323 ref : ${{ matrix.branch }}
2424 - name : Calculate go version
2525 id : vars
2626 run : echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
2727 - name : Set up Go
28- uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # tag=v5.5 .0
28+ uses : actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1 .0
2929 with :
3030 go-version : ${{ steps.vars.outputs.go_version }}
3131 - name : Run verify security target
Original file line number Diff line number Diff line change 1919 current_version : ${{ steps.check_version.outputs.current_version }}
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v5
22+ uses : actions/checkout@v6
2323 with :
2424 fetch-depth : 0
2525 - name : Get latest golangci-lint version
4040 sed -i "s/GOLANGCI_LINT_VERSION ?= .*/GOLANGCI_LINT_VERSION ?= ${{ steps.get_version.outputs.latest_version }}/" hack/tools/Makefile
4141 - name : Create Pull Request
4242 if : ${{ steps.check_version.outputs.current_version != steps.get_version.outputs.latest_version }}
43- uses : peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # tag=v7.0.8
43+ uses : peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # tag=v7.0.9
4444 with :
4545 commit-message : " This commit updates golangci-lint to version v${{ steps.get_version.outputs.latest_version }}."
4646 title : " :seedling: chore: bump golangci-lint to v${{ steps.get_version.outputs.latest_version }}"
Original file line number Diff line number Diff line change 3131
3232 steps :
3333 - name : Checkout mirror repository
34- uses : actions/checkout@v4
34+ uses : actions/checkout@v6
3535 with :
3636 fetch-depth : 0
3737 token : ${{ secrets.GITHUB_TOKEN }}
@@ -119,7 +119,7 @@ jobs:
119119
120120 - name : Create or update PR to main
121121 if : steps.diff.outputs.in_sync == 'false' && steps.branch_diff.outputs.has_changes == 'true'
122- uses : actions/github-script@v7
122+ uses : actions/github-script@v8
123123 with :
124124 github-token : ${{ secrets.GITHUB_TOKEN }}
125125 script : |
You can’t perform that action at this time.
0 commit comments