Skip to content

Commit 14d22ff

Browse files
deps: bump the production-dependencies group with 3 updates
Bumps the production-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `peter-evans/create-pull-request` from 7.0.8 to 7.0.9 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@271a8d0...84ae59a) Updates `actions/create-github-app-token` from 2.1.4 to 2.2.0 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@6701853...7e473ef) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies - dependency-name: peter-evans/create-pull-request dependency-version: 7.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: actions/create-github-app-token dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2d7c470 commit 14d22ff

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
test-folders: ["library-tests", "queries-tests"]
1919
steps:
2020
- name: "Checkout"
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
submodules: true
2424

@@ -83,12 +83,12 @@ jobs:
8383

8484
# steps:
8585
# - name: "Checkout"
86-
# uses: actions/checkout@v5
86+
# uses: actions/checkout@v6
8787
# with:
8888
# submodules: true
8989

9090
# - name: "Checkout"
91-
# uses: actions/checkout@v5
91+
# uses: actions/checkout@v6
9292
# with:
9393
# repository: ${{ matrix.project }}
9494
# path: project
@@ -151,7 +151,7 @@ jobs:
151151
docs:
152152
runs-on: ubuntu-latest
153153
steps:
154-
- uses: actions/checkout@v5
154+
- uses: actions/checkout@v6
155155
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
156156
id: changes
157157
with:

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# starts. If you do not check out your code, Copilot will do this for you.
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
submodules: true
3737

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
actions: write
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: "Run Coverage Report"
1919
if: github.ref == 'refs/heads/main'

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
pull-requests: write
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: actions/labeler@v6
2222
with:
2323
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
release: ${{ steps.get_version.outputs.release }}
1717
version: ${{ steps.get_version.outputs.version }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: "Check release version"
2222
id: get_version
@@ -53,7 +53,7 @@ jobs:
5353
if: ${{ needs.release-check.outputs.release == 'true' }}
5454
steps:
5555
- name: "Checkout"
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5757
with:
5858
submodules: true
5959

@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: "Checkout"
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585
with:
8686
submodules: true
8787

@@ -115,7 +115,7 @@ jobs:
115115

116116
steps:
117117
- name: "Checkout"
118-
uses: actions/checkout@v5
118+
uses: actions/checkout@v6
119119

120120
- name: "Check and Publish CodeQL Packs"
121121
env:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: "Checkout"
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: "Patch Release Me"
2626
uses: 42ByteLabs/patch-release-me@840ec9cfe2170a5704f77ba721bddeb4eb52317a # 0.6.3
@@ -42,7 +42,7 @@ jobs:
4242
echo "release=true" >> "$GITHUB_ENV"
4343
4444
- name: "Create Release"
45-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
45+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
4646
with:
4747
token: ${{ github.token }}
4848
commit-message: "[chore]: Create release for ${{ steps.get_version.outcome.version }}"

.github/workflows/version.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
steps:
1818
- name: "Checkout"
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Get Token
2222
id: get_workflow_token
23-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
23+
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
2424
with:
2525
app-id: ${{ secrets.CODEQL_FIELD_BOT_ID }}
2626
private-key: ${{ secrets.CODEQL_FIELD_BOT_KEY }}
@@ -34,7 +34,7 @@ jobs:
3434
--bump "${{ github.event.inputs.bump }}"
3535
3636
- name: Create Pull Request
37-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
37+
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
3838
with:
3939
title: "[Bot] Version Bump - ${{ github.event.inputs.repository }}"
4040
body: "This PR was automatically generated to bump the version of IaC library and queries."

0 commit comments

Comments
 (0)