Skip to content

Commit 4752561

Browse files
chore(deps): update actions/checkout action to v5
1 parent 3878ed1 commit 4752561

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/auto-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
issues: write # to be able to comment on released issues
1717
pull-requests: write # to be able to comment on released pull requests
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

@@ -44,7 +44,7 @@ jobs:
4444
permissions:
4545
contents: write
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0
5050
token: ${{ secrets.GHA_TOKEN }}

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
environment: auto-release
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.GHA_TOKEN }}

.github/workflows/mypy.yml

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

1717
steps:
1818
- name: Checkout Code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/pre-commit.yml

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

1818
steps:
1919
- name: Check out the repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
token: ${{ env.REPO_SCOPED_TOKEN || github.token }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
GITHUB_CONTEXT: ${{ toJson(github) }}
4646
run: echo "$GITHUB_CONTEXT"
4747

48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0
5151
ref: ${{ inputs.release-tag || github.event.pull_request.head.ref || github.ref }}
@@ -87,7 +87,7 @@ jobs:
8787
id-token: write
8888
contents: write # grants permission to create a release on github
8989
steps:
90-
- uses: actions/checkout@v4
90+
- uses: actions/checkout@v5
9191

9292
- name: Setup backend
9393
uses: ./.github/actions/setup-environment

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
group: [1, 2, 3, 4, 5, 6, 7, 8]
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 0
4949
ref: ${{ github.event.pull_request.head.sha }}
@@ -86,7 +86,7 @@ jobs:
8686
cancel-in-progress: true
8787
name: "Codemod tests ${{matrix.size}}: Sync Graph=${{matrix.sync_graph}}"
8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v5
9090
with:
9191
ref: ${{ github.event.pull_request.head.sha }}
9292

@@ -114,7 +114,7 @@ jobs:
114114
if: contains(github.event.pull_request.labels.*.name, 'parse-tests') || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
115115
runs-on: ubuntu-latest
116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v5
118118
with:
119119
ref: ${{ github.event.pull_request.head.sha }}
120120

@@ -184,7 +184,7 @@ jobs:
184184
needs: access-check
185185
runs-on: ubuntu-latest
186186
steps:
187-
- uses: actions/checkout@v4
187+
- uses: actions/checkout@v5
188188
with:
189189
ref: ${{ github.event.pull_request.head.sha }}
190190

0 commit comments

Comments
 (0)