Skip to content

Commit f2e7ae2

Browse files
Pin dependencies (#619)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 27ac043 commit f2e7ae2

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/benchmark.template.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
ulimit -n 10000
4343
4444
- name: checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4646

4747
- name: Setup K6
4848
run: |
@@ -52,7 +52,7 @@ jobs:
5252
sudo apt-get install k6=0.49.0
5353
5454
- name: login to docker registry
55-
uses: docker/login-action@v3
55+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
5656
with:
5757
registry: ghcr.io
5858
username: ${{ github.actor }}
@@ -74,7 +74,7 @@ jobs:
7474
MEM_LIMIT: ${{ inputs.memoryLimit }}
7575
CPU_LIMIT: ${{ inputs.cpuLimit }}
7676

77-
- uses: actions/upload-artifact@v4
77+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
7878
if: always()
7979
with:
8080
name: ${{ inputs.baseDir }}_${{ inputs.scenarioName }}_${{ inputs.gateway }}

.github/workflows/docker-bake.template.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2020

2121
- name: configure eqemu
22-
uses: docker/setup-qemu-action@v3
22+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
2323
with:
2424
platforms: 'linux/arm64,linux/amd64'
2525

2626
- name: configure docker buildx
27-
uses: docker/setup-buildx-action@v3
27+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
2828

2929
- name: login to docker registry
30-
uses: docker/login-action@v3
30+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
3131
with:
3232
registry: ghcr.io
3333
username: ${{ github.actor }}
@@ -36,7 +36,7 @@ jobs:
3636
- name: build docker images
3737
timeout-minutes: 20
3838
id: docker-bake
39-
uses: docker/bake-action@v5
39+
uses: docker/bake-action@4a9a8d494466d37134e2bfca2d3a8de8fb2681ad # v5
4040
env:
4141
DOCKER_REGISTRY: ghcr.io/${{ github.repository }}/
4242
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/images-cleanup.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: report
1313
steps:
1414
- name: checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616

1717
- name: setup node
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
1919
with:
2020
node-version: 22.6
2121

.github/workflows/report.template.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
name: report
1818
steps:
1919
- name: checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2121
with:
2222
token: ${{ secrets.GITHUB_TOKEN }}
2323

2424
- name: download artifacts
2525
id: download
26-
uses: actions/download-artifact@v4
26+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
2727
with:
2828
path: artifacts
2929
pattern: federation-*
3030

3131
- name: setup node
32-
uses: actions/setup-node@v4
32+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
3333
with:
3434
node-version: 21
3535

@@ -47,7 +47,7 @@ jobs:
4747
CF_IMAGES_TOKEN: ${{ secrets.CF_IMAGES_TOKEN }}
4848

4949
- name: publish report (pull_request)
50-
uses: marocchino/sticky-pull-request-comment@v2
50+
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2
5151
if: github.event_name == 'pull_request'
5252
with:
5353
header: ${{ inputs.scenarioName }}
@@ -68,7 +68,7 @@ jobs:
6868
git config user.email [email protected]
6969
7070
- name: publish report (workflow_dispatch/push)
71-
uses: EndBug/add-and-commit@v9
71+
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
7272
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
7373
with:
7474
add: ${{ inputs.baseDir }}/scenarios/${{ inputs.scenarioName }}/README.md
@@ -78,7 +78,7 @@ jobs:
7878
author_name: github-actions
7979
github_token: ${{ secrets.GITHUB_TOKEN }}
8080

81-
- uses: actions/upload-artifact@v4
81+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8282
if: always()
8383
with:
8484
name: ${{ inputs.baseDir }}-${{ inputs.scenarioName }}-report

0 commit comments

Comments
 (0)