Skip to content

Commit 9d27cf2

Browse files
Bump actions/checkout from 4 to 5 (#1101)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com>
1 parent 81b2a93 commit 9d27cf2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/code-static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
language: ['javascript', 'python']
3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
- name: Set up Python 3.12
3737
if: ${{ matrix.language == 'python' }}
3838
uses: actions/setup-python@v5

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
# Full git history is needed to get a proper list of changed files within `super-linter`
2222
fetch-depth: 0

.github/workflows/monthly-report-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: github.repository == 'HTTPArchive/httparchive.org'
3535
steps:
3636
- name: Checkout branch
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
- name: Run the report checks
3939
env:
4040
REPORT_DATE: ${{ github.event.inputs.REPORT_DATE }}

.github/workflows/predeploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout branch
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Setup Node.js for use with actions
2525
uses: actions/setup-node@v4
2626
with:

.github/workflows/production-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: github.repository == 'HTTPArchive/httparchive.org'
2525
steps:
2626
- name: Checkout branch
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Set the list of URLs for Lighthouse to check
2929
run: ./tools/scripts/set_lighthouse_urls.sh -p
3030
- name: Audit URLs using Lighthouse

.github/workflows/test-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository == 'HTTPArchive/httparchive.org'
1717
steps:
1818
- name: Checkout branch
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
# Full git history is needed to get a proper list of changed files within `super-linter`
2222
fetch-depth: 0

0 commit comments

Comments
 (0)