Skip to content

Commit 3474694

Browse files
🌱 Update github-actions group (#1520)
| datasource | package | from | to | | ----------- | -------------------------- | ------- | ------- | | github-tags | actions/setup-go | v5.2.0 | v5.3.0 | | github-tags | actions/upload-artifact | v4.4.3 | v4.6.1 | | github-tags | docker/build-push-action | v6.10.0 | v6.15.0 | | github-tags | docker/login-action | v3.3.0 | v3.4.0 | | github-tags | docker/metadata-action | v5.6.1 | v5.7.0 | | github-tags | docker/setup-buildx-action | v3.8.0 | v3.10.0 | | github-tags | sigstore/cosign-installer | v3.7.0 | v3.8.1 | Co-authored-by: syself-bot[bot] <115953087+syself-bot[bot]@users.noreply.github.com>
1 parent 13bee4a commit 3474694

File tree

11 files changed

+36
-36
lines changed

11 files changed

+36
-36
lines changed

.github/actions/e2e/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ runs:
2626
using: "composite"
2727
steps:
2828
- uses: ./.github/actions/setup-go
29-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
29+
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3030
with:
3131
path: hack/tools/bin
3232
key: ${{ runner.os }}-tools-bin-e2e-${{ hashFiles('Makefile') }}
3333
restore-keys: |
3434
${{ runner.os }}-tools-bin-e2e-
3535
${{ runner.os }}-tools-bin-
3636
- name: Download artifact
37-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
37+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
3838
with:
3939
name: test-release
4040
path: out
@@ -79,7 +79,7 @@ runs:
7979
CAPH_LATEST_VERSION: "v1.0.1"
8080
run: make ${{ inputs.e2e_make_target }}
8181
- name: Upload artifact
82-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
82+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
8383
if: ${{ always() }}
8484
with:
8585
name: e2e-${{ inputs.e2e_name }}

.github/actions/manager-image/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ runs:
88
using: "composite"
99
steps:
1010
- name: Set up Docker Buildx
11-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
11+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
1212

1313
- name: Login to ghcr.io for CI
14-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
14+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
1515
with:
1616
registry: ghcr.io
1717
username: ${{ github.actor }}
@@ -44,7 +44,7 @@ runs:
4444
4545
# Import GitHub's cache build to docker cache
4646
- name: Copy Caph Golang cache to docker cache
47-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
47+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
4848
with:
4949
provenance: false
5050
context: /tmp/.cache/caph
@@ -54,7 +54,7 @@ runs:
5454
target: import-cache
5555

5656
- name: Build and push manager image
57-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
57+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
5858
with:
5959
provenance: false
6060
context: .

.github/actions/metadata/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
steps:
2323
- name: Docker manager metadata
2424
id: meta
25-
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
25+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
2626
with:
2727
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
2828
flavor: ${{ inputs.metadata_flavor }}

.github/actions/setup-go/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Install go
7-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
7+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
88
with:
99
go-version-file: "go.mod"
1010
cache: true
@@ -15,14 +15,14 @@ runs:
1515
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
1616
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
1717
- name: Go Mod Cache
18-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
18+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
1919
with:
2020
path: ${{ steps.go-cache-paths.outputs.go-mod }}
2121
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
2222
restore-keys: |
2323
${{ runner.os }}-go-mod-
2424
- name: Go Build Cache
25-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
25+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
2626
with:
2727
path: ${{ steps.go-cache-paths.outputs.go-build }}
2828
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

.github/actions/test-release/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- uses: ./.github/actions/setup-go
7-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
7+
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
88
with:
99
path: hack/tools/bin
1010
key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}
@@ -25,7 +25,7 @@ runs:
2525
TAG: ${{ steps.meta.outputs.version }}
2626
run: make test-release
2727
- name: Upload artifact
28-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
28+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
2929
with:
3030
name: test-release
3131
path: out

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
fetch-depth: 0
3434
- uses: ./.github/actions/setup-go
3535
- name: Set up QEMU
36-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
36+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
38+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
3939

4040
- name: Generate metadata
4141
id: meta
@@ -45,14 +45,14 @@ jobs:
4545
metadata_tags: ${{ env.metadata_tags }}
4646

4747
- name: Login to ghcr.io for CI
48-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
48+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
4949
with:
5050
registry: ghcr.io
5151
username: ${{ github.actor }}
5252
password: ${{ secrets.GITHUB_TOKEN }}
5353

5454
- name: Install Cosign
55-
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
55+
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
5656

5757
- name: Install Bom
5858
shell: bash
@@ -88,7 +88,7 @@ jobs:
8888
8989
# Import GitHub's cache build to docker cache
9090
- name: Copy Caph Golang cache to docker cache
91-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
91+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
9292
with:
9393
provenance: false
9494
context: /tmp/.cache/caph
@@ -98,7 +98,7 @@ jobs:
9898
target: import-cache
9999

100100
- name: Build and push manager image
101-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
101+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
102102
id: docker_build_release
103103
with:
104104
provenance: false
@@ -141,7 +141,7 @@ jobs:
141141
142142
# Upload artifact digests
143143
- name: Upload artifact digests
144-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
144+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
145145
with:
146146
name: image-digest caph
147147
path: image-digest
@@ -150,7 +150,7 @@ jobs:
150150
# Store docker's golang's cache build locally only on the main branch
151151
- name: Store Caph Golang cache build locally
152152
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
153-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0
153+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
154154
with:
155155
provenance: false
156156
context: .

.github/workflows/pr-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Verify Starlark
2929
run: make verify-starlark
3030

31-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
31+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
3232
with:
3333
node-version: "18"
3434
- name: Install renovate
@@ -41,7 +41,7 @@ jobs:
4141
done
4242
4343
- name: Generate Token
44-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
44+
uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1
4545
id: generate-token
4646
with:
4747
app-id: ${{ secrets.SYSELF_APP_ID }}

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
fetch-depth: 0
2525
- uses: ./.github/actions/setup-go
2626
- name: Set up QEMU
27-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
27+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
29+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
3030

3131
- name: Generate metadata
3232
id: meta
@@ -36,14 +36,14 @@ jobs:
3636
metadata_tags: ${{ env.metadata_tags }}
3737

3838
- name: Login to ghcr.io for CI
39-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
39+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
4040
with:
4141
registry: ghcr.io
4242
username: ${{ github.actor }}
4343
password: ${{ secrets.GITHUB_TOKEN }}
4444

4545
- name: Install Cosign
46-
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
46+
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
4747

4848
- name: Install Bom
4949
shell: bash
@@ -60,7 +60,7 @@ jobs:
6060
echo 'EOF' >> $GITHUB_ENV
6161
6262
- name: Build and push manager image
63-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
63+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
6464
id: docker_build_release
6565
with:
6666
provenance: false
@@ -107,7 +107,7 @@ jobs:
107107
108108
# Upload artifact digests
109109
- name: Upload artifact digests
110-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
110+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
111111
with:
112112
name: image-digest caph
113113
path: image-digest
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
fetch-depth: 0
134134
- name: Install go
135-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
135+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
136136
with:
137137
go-version-file: "go.mod"
138138
cache: true
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
make release-notes
149149
- name: Release
150-
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2
150+
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
151151
with:
152152
draft: true
153153
files: out/*

.github/workflows/report-bin-size.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
1717

1818
- name: Install go
19-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
19+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2020
with:
2121
go-version-file: "go.mod"
2222
cache: true
@@ -26,7 +26,7 @@ jobs:
2626
run: make caph report-binsize-treemap-all
2727

2828
- name: Upload Report
29-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
29+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
3030
with:
3131
name: reports-${{ github.sha }}
3232
path: .reports

.github/workflows/schedule-update-bot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434

3535
- name: Generate Token
36-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
36+
uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1
3737
id: generate-token
3838
with:
3939
app-id: ${{ secrets.SYSELF_APP_ID }}

0 commit comments

Comments
 (0)