Skip to content
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

Bump actions/checkout from 2 to 4 #45

Open
wants to merge 1 commit into
base: t-will-gillis-check-version-updates-4826
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
4 changes: 2 additions & 2 deletions .github/workflows/issue-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
# Only trigger this action when an issue is newly created
if: ${{ github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'transferred')}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Check if the issue has required labels
- name: Check Labels
uses: actions/github-script@v4
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
#Triggers when the issue is newly assigned
if: ${{ github.event_name == 'issues' && github.event.action == 'assigned'}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Check if the issue has the required roles
- name: Check Labels Prelim
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-scss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/move-closed-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
move-closed-issue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Sort Closed Issues by Label
uses: actions/github-script@v4
id: sort-closed-issues
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-instructions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
Add-Pull-Request-Instructions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Create the message to post
- name: Create Instruction
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-daily-1100.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN2 }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-fri-0700.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
Add-Update-Label-to-Issues-Weekly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/github-script@v4
env:
IN_PROGRESS_COLUMN_ID: ${{ secrets.IN_PROGRESS_COLUMN_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
list-inactive-members:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# gets a list of website-write team members with no open issues, returns a list of member's github handles
- name: Get List
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-thu-1100.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# checkout repo
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-pr-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
PR_NUMBER: ${{ github.event.number }}
SCRIPT_PATH: './github-actions/trigger-pr/set-pr-labels.js'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: parse-pr-body
name: 'Parse the pull request body for all linked issues'
uses: actions/github-script@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vrms-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.repository == 'hackforla/website'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-pr-instructions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
const artifactJSON = JSON.parse(artifact);
return artifactJSON

- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Create the message to post
- name: Post Comment
uses: actions/github-script@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-set-pr-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ARTIFACT_NAME: 'pr-labels'
SCRIPT_PATH: './github-actions/trigger-pr/set-pr-labels.js'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: download-artifact
name: 'Download artifact'
uses: actions/github-script@v6
Expand Down