Skip to content

chore(deps): bump actions/checkout from 4 to 5 #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Update Release Draft
uses: release-drafter/release-drafter@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_test-file-exists-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Test with existing file
uses: ./actions/file-exists
Expand All @@ -39,7 +39,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Test with non-existent file
uses: ./actions/file-exists
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_update-self-references.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/finish-exercise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.repository.default_branch }}

- name: Get response templates
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

steps:
- name: Get response templates
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/start-exercise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Disable all exercise workflows
run: |
Expand All @@ -63,7 +63,7 @@ jobs:

steps:
- name: Get response templates
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
Expand Down Expand Up @@ -103,10 +103,10 @@ jobs:
needs: create_exercise

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get response templates
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: skills/exercise-toolkit
path: exercise-toolkit
Expand Down