Skip to content
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/activity-history-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
Read-CSV:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Parse CSV
id: parse-csv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-create-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Fetch Alerts
- name: Fetch Alerts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-scan-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/issue-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.action == 'opened' || github.event.action == 'transferred' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
# Checks if user is on the 'website-write' team, else halts workflow
- name: Check Team Membership
id: check-team-membership
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.action == 'assigned' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
# Checks if the issue has the required roles (front end, back end/devOps, design, or user research)
- name: Check Labels Prelim
uses: actions/github-script@v7
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-latest
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'Feature: Feature Branch' }}"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Add feature branch comment
uses: actions/github-script@v7
with:
Expand All @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-latest
if: "${{ github.event.action == 'unlabeled' && github.event.label.name == 'Feature: Feature Branch' }}"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Hide feature branch comment
uses: actions/github-script@v7
with:
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@v4
uses: actions/checkout@v5
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 @@ -8,7 +8,7 @@ jobs:
Move-Closed-Issues:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# 1: Sort closed issues based on labels
- name: Sort Closed Issues by Label
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@v4
- uses: actions/checkout@v5

# Create the message to post
- name: Create Instruction
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
Check-Team-Membership:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.HACKFORLA_ADMIN_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: ${{ github.event.action == 'opened' || github.event.action == 'edited' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Check for keyword and issue number
id: check-for-keyword
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 @@ -12,7 +12,7 @@ jobs:

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

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 @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'hackforla/website'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.HACKFORLA_GRAPHQL_TOKEN }}
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 @@ -13,7 +13,7 @@ jobs:
steps:
# Checkout repo, and provide authorization token for `stefanzweifel/git-auto-commit-action` below
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ secrets.HACKFORLA_ADMIN_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@v4
- uses: actions/checkout@v5
- id: parse-pr-body
name: 'Parse the pull request body for all linked issues'
uses: actions/github-script@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-label-directory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'hackforla/website'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }}

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@v4
- uses: actions/checkout@v5
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@v4
- uses: actions/checkout@v5
# Create the message to post
- name: Post Comment
uses: actions/github-script@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wr-schedule-monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo "The 'Schedule Monthly' workflow succeeded. Continuing."
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# Creates a new issue in 'hackforla/website' repo with the saved lists
- name: Create new issue
Expand All @@ -27,7 +27,7 @@ jobs:
needs: Create-New-Issue
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get owner url
id: get-owner-url
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@v4
- uses: actions/checkout@v5
- id: download-artifact
name: 'Download artifact'
uses: actions/github-script@v7
Expand Down
Loading