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 3.5.3 to 3.6.0 #978

Closed
Closed
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/cli-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3.6.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fosstars-project-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
name: "Security rating"
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: SAP/fosstars-rating-core-action@v1.14.0
with:
report-branch: fosstars-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fosstars-rop-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
name: "RoP report"
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: SAP/fosstars-rating-core-action@v1.14.0
with:
rating: oss-rules-of-play
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
name: "Calculate label thresholds"
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-label-threshold-action
with:
input-file: github_projects.json
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/oss-projects-security-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
name: "Other projects"
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: other.yml
Expand All @@ -17,7 +17,7 @@ jobs:
name: "Apache projects"
needs: other
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: apache.yml
Expand All @@ -27,7 +27,7 @@ jobs:
name: "Eclipse projects"
needs: apache
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: eclipse.yml
Expand All @@ -37,7 +37,7 @@ jobs:
name: "Spring projects"
needs: eclipse
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: spring.yml
Expand All @@ -47,7 +47,7 @@ jobs:
name: "Bouncy Castle projects"
needs: spring
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: bouncycastle.yml
Expand All @@ -57,7 +57,7 @@ jobs:
name: "AWS projects"
needs: bouncy_castle
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: aws.yml
Expand All @@ -67,7 +67,7 @@ jobs:
name: "Google projects"
needs: aws
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: google.yml
Expand All @@ -77,7 +77,7 @@ jobs:
name: "Jackson projects"
needs: google
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-report-action
with:
config-file: jackson.yml
Expand All @@ -87,7 +87,7 @@ jobs:
name: "Calculate label thresholds"
needs: jackson
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/project-security-label-threshold-action
with:
input-file: github_projects.json
Expand Down