Skip to content

Commit 2be0657

Browse files
Merge branch 'graphprotocol:main' into main
2 parents f6f444d + b9b8b82 commit 2be0657

File tree

10 files changed

+274
-94
lines changed

10 files changed

+274
-94
lines changed

.github/workflows/containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
40+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
4141
- name: Extract version from tag
4242
id: extract_version
4343
run: |

.github/workflows/conventional_commits.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
12+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
1313
with:
1414
fetch-depth: 0
1515
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/license_headers_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: License headers check
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
14+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
1515
- name: Install addlicense
1616
run: |
1717
wget https://github.com/google/addlicense/releases/download/v1.1.1/addlicense_1.1.1_Linux_x86_64.tar.gz

.github/workflows/tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
container:
1414
image: rust:1.80-bookworm
1515
steps:
16-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
16+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
1717
- run: |
1818
rustup component add rustfmt
1919
cargo fmt --all -- --check
@@ -38,7 +38,7 @@ jobs:
3838
env:
3939
DATABASE_URL: postgres://postgres@postgres:5432
4040
steps:
41-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
41+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
4242
- name: Cache dependencies
4343
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3
4444
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
@@ -48,7 +48,7 @@ jobs:
4848
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
4949
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
5050
- name: Run sccache-cache
51-
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5
51+
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6
5252
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
5353
- name: Install sqlx
5454
run: cargo install sqlx-cli --no-default-features --features postgres
@@ -66,7 +66,7 @@ jobs:
6666
DATABASE_URL: postgres://postgres@postgres:5432
6767
SQLX_OFFLINE: true
6868
steps:
69-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
69+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
7070
- name: Cache dependencies
7171
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3
7272
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
@@ -76,7 +76,7 @@ jobs:
7676
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
7777
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
7878
- name: Run sccache-cache
79-
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5
79+
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6
8080
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
8181
- run: |
8282
rustup component add clippy
@@ -107,7 +107,7 @@ jobs:
107107
env:
108108
DATABASE_URL: postgres://postgres@postgres:5432
109109
steps:
110-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
110+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
111111
- name: Cache dependencies
112112
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3
113113
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
@@ -117,7 +117,7 @@ jobs:
117117
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
118118
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
119119
- name: Run sccache-cache
120-
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5
120+
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6
121121
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
122122
- name: Install cargo-llvm-cov
123123
uses: taiki-e/install-action@cargo-llvm-cov
@@ -128,7 +128,7 @@ jobs:
128128
- name: Run tests and generate coverage report
129129
run: cargo llvm-cov test --all-features --workspace --lcov --output-path lcov.info
130130
- name: Upload coverage to Coveralls
131-
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0
131+
uses: coverallsapp/github-action@1134c89e4bf10443bf8f0ec69640b667cfd91041 # v2.3.1
132132
with:
133133
file: ./lcov.info
134134

@@ -157,7 +157,7 @@ jobs:
157157
env:
158158
DATABASE_URL: postgres://postgres@postgres:5432
159159
steps:
160-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
160+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
161161
- name: Cache dependencies
162162
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 #v2.7.3
163163
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
@@ -167,7 +167,7 @@ jobs:
167167
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
168168
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
169169
- name: Run sccache-cache
170-
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af #v0.0.5
170+
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6
171171
if: ${{ !startsWith(github.head_ref, 'renovate/') }}
172172
- name: Install sqlx
173173
run: cargo install sqlx-cli --no-default-features --features postgres

0 commit comments

Comments
 (0)