Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6

- name: Create Test Subgraph schema
run: >
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v4.2.0
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v5.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_helm_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint_commits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pull-requests: read
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_release_please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_supergraph_generate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: npm install -g wgc@latest

- name: Checkout Source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6

- name: Compose Execution Config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_supergraph_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/schema_comparison.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout main
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: main

Expand All @@ -39,7 +39,7 @@ jobs:
cp supergraph.graphql /tmp/old_supergraph.graphql

- name: Checkout Source
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6

- name: Compose New Execution Config (PR)
run: |
Expand Down
Loading