Skip to content

Commit 0c42602

Browse files
Bump actions/checkout from 5 to 6 (#4274)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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 6ea0cd2 commit 0c42602

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/check-translations-lengths.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout Code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
path: this_run
3737
# Full git history is needed to get a proper list of changed files
3838
fetch-depth: 0
3939
- name: Checkout Code
4040
if: github.event_name == 'pull_request'
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
path: original
4444
ref: main

.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@v5
35+
uses: actions/checkout@v6
3636
- name: Set up Python 3.12
3737
if: ${{ matrix.language == 'python' }}
3838
uses: actions/setup-python@v6

.github/workflows/compress-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
github.event.pull_request.head.repo.full_name == github.repository)
4646
steps:
4747
- name: Checkout Branch
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
- name: Run Image Compression
5050
id: calibre
5151
uses: calibreapp/image-actions@main

.github/workflows/linter.yml

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

.github/workflows/lintsql.yml

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

.github/workflows/predeploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout branch
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
- name: Setup Node.js for use with actions
3636
uses: actions/setup-node@v6
3737
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/almanac.httparchive.org'
2525
steps:
2626
- name: Checkout branch
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Set the list of URLs for Lighthouse to check
2929
run: ./src/tools/scripts/set_lighthouse_urls.sh -p
3030
- name: Audit URLs using Lighthouse

.github/workflows/test-template-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
3030
steps:
3131
- name: Checkout Code
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535
- name: Setup Node.js for use with actions

.github/workflows/test_website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
2222
steps:
2323
- name: Checkout branch
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
# Full git history is needed to get a proper list of changed files within `super-linter`
2727
fetch-depth: 0

0 commit comments

Comments
 (0)