Skip to content

Bump actions/checkout from 4 to 5 #269

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

Merged
merged 1 commit into from
Aug 13, 2025
Merged
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/on_call_build_site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_call_staging_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Fetch site artifact
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on_pr_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Check Changes
id: changed-env
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Lint Code Base
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_pr_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs:
changed: ${{ steps.changes.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Check for base image related changes
# tj-actions/changed-files v44.5.7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on_push_to_master_test_and_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:

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

- name: Check for workflow changes
# tj-actions/changed-files v44.5.7
Expand All @@ -97,7 +97,7 @@ jobs:
# see https://github.com/mcdeck/netlify-cms-oauth-provider-php
- name: Checkout the netlify-cms-oauth-provider-php
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: mcdeck/netlify-cms-oauth-provider-php
path: netlify-cms-oauth-provider-php
Expand Down