Skip to content

Commit

Permalink
ci: bump the minor group across 1 directory with 7 updates
Browse files Browse the repository at this point in the history
Bumps the minor group with 7 updates in the /.github/workflows directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4.2.1` | `4.2.2` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.3` | `4.6.0` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.1.0` | `4.2.0` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.3.0` | `5.4.0` |
| [helm/chart-testing-action](https://github.com/helm/chart-testing-action) | `2.6.1` | `2.7.0` |
| [wagoid/commitlint-github-action](https://github.com/wagoid/commitlint-github-action) | `6.1.2` | `6.2.1` |
| [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1.11.0` | `1.11.3` |



Updates `actions/checkout` from 4.2.1 to 4.2.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.2.1...v4.2.2)

Updates `actions/upload-artifact` from 4.4.3 to 4.6.0
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.4.3...v4.6.0)

Updates `actions/setup-node` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4.1.0...v4.2.0)

Updates `actions/setup-python` from 5.3.0 to 5.4.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.3.0...v5.4.0)

Updates `helm/chart-testing-action` from 2.6.1 to 2.7.0
- [Release notes](https://github.com/helm/chart-testing-action/releases)
- [Commits](helm/chart-testing-action@v2.6.1...v2.7.0)

Updates `wagoid/commitlint-github-action` from 6.1.2 to 6.2.1
- [Changelog](https://github.com/wagoid/commitlint-github-action/blob/master/CHANGELOG.md)
- [Commits](wagoid/commitlint-github-action@v6.1.2...v6.2.1)

Updates `actions/create-github-app-token` from 1.11.0 to 1.11.3
- [Release notes](https://github.com/actions/create-github-app-token/releases)
- [Commits](actions/create-github-app-token@v1.11.0...v1.11.3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: helm/chart-testing-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: wagoid/commitlint-github-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: actions/create-github-app-token
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and garryod committed Feb 6, 2025
1 parent 44d16dd commit ca48d26
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .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/[email protected].1
uses: actions/[email protected].2

- name: Create Test Subgraph schema
run: >
Expand All @@ -25,7 +25,7 @@ jobs:
" > test-schema.graphql
- name: Upload Test Subgraph schema
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
name: test-update-schema
path: test-schema.graphql
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/[email protected]

- name: Setup Node
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0
with:
node-version: 18

Expand All @@ -39,7 +39,7 @@ jobs:
uses: actions/[email protected]

- name: Setup Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: 3.12

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 @@ -16,7 +16,7 @@ jobs:
uses: azure/[email protected]

- name: Setup chart-testing
uses: helm/chart-testing-action@v2.6.1
uses: helm/chart-testing-action@v2.7.0

- name: Install chart dependencies
run: |
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 @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0

- name: Lint Commits
uses: wagoid/commitlint-github-action@v6.1.2
uses: wagoid/commitlint-github-action@v6.2.1
with:
configFile: .commitlintrc.json
failOnWarnings: true
2 changes: 1 addition & 1 deletion .github/workflows/_release_please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Create GitHub App Token
id: app-token
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
app-id: 1010045
private-key: ${{ secrets.GRAPH_FEDERATOR }}
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 @@ -23,7 +23,7 @@ jobs:
> supergraph.graphql
- name: Upload New Schema Artifact
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
name: supergraph.graphql
path: supergraph.graphql
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 @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4.1.0
uses: actions/setup-node@v4.2.0

- name: Install release-please & simple-git
run: npm install release-please simple-git
Expand Down

0 comments on commit ca48d26

Please sign in to comment.