Skip to content

Commit

Permalink
chore: s/ubuntu-latest/ubuntu-22.04/
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Dec 30, 2024
1 parent 5ddbe42 commit 598ba4c
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
actionlint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
type: string
jobs:
bump:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build:
timeout-minutes: 3
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [lts/*, latest]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -23,7 +23,7 @@ jobs:

publish-gpr:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
18 changes: 13 additions & 5 deletions example/src/schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,24 @@ type RecipesEdge {
type Query {
node(id: ID!): Node
recipes(
"""Paginate before opaque cursor"""
"""
Paginate before opaque cursor
"""
before: String

"""Paginate after opaque cursor"""
"""
Paginate after opaque cursor
"""
after: String

"""Paginate first"""
"""
Paginate first
"""
first: Int

"""Paginate last"""
"""
Paginate last
"""
last: Int
where: RecipeWhereInput
orderBy: OrderByInput
Expand All @@ -67,4 +75,4 @@ input OrderByInput {
enum OrderByDirection {
ASC
DESC
}
}
5 changes: 1 addition & 4 deletions packages/nestjs-firebase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
"clean": "tsc --build --clean",
"lint": "tsc -p . --noEmit"
},
"keywords": [
"nest",
"firebase"
],
"keywords": ["nest", "firebase"],
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"firebase-admin": "^10.0.0 || ^11.0.0 || ^12.0.0"
Expand Down
6 changes: 1 addition & 5 deletions packages/nestjs-graphql-relay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@
"clean": "tsc --build --clean",
"lint": "tsc -p . --noEmit"
},
"keywords": [
"nest",
"graphql-relay",
"typeorm"
],
"keywords": ["nest", "graphql-relay", "typeorm"],
"peerDependencies": {
"@apollo/gateway": "^2.0.0",
"@nestjs/graphql": "^12.0.0",
Expand Down
5 changes: 1 addition & 4 deletions packages/nestjs-slack-webhook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@
"clean": "tsc --build --clean",
"lint": "tsc -p . --noEmit"
},
"keywords": [
"nest",
"slack-webhook"
],
"keywords": ["nest", "slack-webhook"],
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@slack/webhook": "^6.0.0 || ^7.0.0"
Expand Down
5 changes: 1 addition & 4 deletions packages/nestjs-zendesk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@
"clean": "tsc --build --clean",
"lint": "tsc -p . --noEmit"
},
"keywords": [
"nest",
"zendesk"
],
"keywords": ["nest", "zendesk"],
"peerDependencies": {
"node-zendesk": "^5.0.0"
},
Expand Down

0 comments on commit 598ba4c

Please sign in to comment.