Skip to content

Commit 7deb077

Browse files
Bump actions/checkout from 5 to 6 (#8434)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7af248a commit 7deb077

19 files changed

+23
-23
lines changed

.github/workflows/activity-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
if: github.repository == 'hackforla/website'
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
- name: Gather Event Details
3030
id: gather-event-details

.github/workflows/codeql-create-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
# Fetch Alerts
2020
- name: Fetch Alerts

.github/workflows/codeql-scan-job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/flag-issues-unlabeled-after-deletion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
Flag-Issues-Unlabeled-After-Deletion:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222

2323
# Get the issues that had the label prior to the label being deleted
2424
- name: Get recently unlabeled issues

.github/workflows/issue-trigger.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: ${{ github.event.action == 'opened' || github.event.action == 'transferred' }}
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
# Checks if user is on the 'website-write' team, else halts workflow
1414
- name: Check Team Membership
1515
id: check-team-membership
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
if: ${{ github.event.action == 'assigned' }}
5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
# Checks if the issue has the required roles (front end, back end/devOps, design, or user research)
5555
- name: Check Labels Prelim
5656
uses: actions/github-script@v8
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-latest
8080
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'Feature: Feature Branch' }}"
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
- name: Add feature branch comment
8484
uses: actions/github-script@v8
8585
with:
@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ubuntu-latest
9292
if: "${{ github.event.action == 'unlabeled' && github.event.label.name == 'Feature: Feature Branch' }}"
9393
steps:
94-
- uses: actions/checkout@v5
94+
- uses: actions/checkout@v6
9595
- name: Hide feature branch comment
9696
uses: actions/github-script@v8
9797
with:

.github/workflows/lint-scss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout Code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
# Full git history is needed to get a proper list of changed files within `super-linter`
1919
fetch-depth: 0

.github/workflows/move-closed-issues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
Move-Closed-Issues:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212

1313
# 1: Sort closed issues based on labels
1414
- name: Sort Closed Issues by Label

.github/workflows/pr-instructions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
Add-Pull-Request-Instructions:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414

1515
# Create the message to post
1616
- name: Create Instruction

.github/workflows/pr-verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
Check-Team-Membership:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- uses: actions/github-script@v8
1212
with:
1313
github-token: ${{ secrets.HACKFORLA_ADMIN_TOKEN }}

.github/workflows/pull-request-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ github.event.action == 'opened' || github.event.action == 'edited' }}
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Check for keyword and issue number
1717
id: check-for-keyword

0 commit comments

Comments
 (0)