Skip to content

Commit 7a51de6

Browse files
chore(deps): update actions/checkout action to v5
1 parent 6a8cbca commit 7a51de6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
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

.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
@@ -34,7 +34,7 @@ jobs:
3434
GITHUB_CONTEXT: ${{ toJson(github) }}
3535
run: echo "$GITHUB_CONTEXT"
3636

37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040
ref: ${{ inputs.release-tag || github.event.pull_request.head.ref || github.ref }}
@@ -72,7 +72,7 @@ jobs:
7272
permissions:
7373
contents: write # grants permission to create a release on github
7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676

7777
- name: Setup backend
7878
uses: ./.github/actions/setup-environment

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
needs: access-check
3535
runs-on: ubuntu-latest-8
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040
ref: ${{ github.event.pull_request.head.sha }}
@@ -76,7 +76,7 @@ jobs:
7676
cancel-in-progress: true
7777
name: "Codemod tests ${{matrix.size}}: Sync Graph=${{matrix.sync_graph}}"
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8080
with:
8181
ref: ${{ github.event.pull_request.head.sha }}
8282

@@ -105,7 +105,7 @@ jobs:
105105
needs: access-check
106106
runs-on: ubuntu-latest-16
107107
steps:
108-
- uses: actions/checkout@v4
108+
- uses: actions/checkout@v5
109109
with:
110110
ref: ${{ github.event.pull_request.head.sha }}
111111

.github/workflows/ty.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

0 commit comments

Comments
 (0)