Skip to content

Commit

Permalink
Address set-output deprecation (#11)
Browse files Browse the repository at this point in the history
* Address set-output deprecation

* Delete .gitignore

* Update .github/dependabot.yml
  • Loading branch information
NotMyFault committed Oct 26, 2022
1 parent bed9f1d commit 5ac025d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
8 changes: 4 additions & 4 deletions .github/workflows/jenkins-security-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out plugin
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check out Jenkins code scanning rules
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: jenkins-infra/jenkins-codeql
path: jenkins-security-scan-rules
Expand All @@ -41,7 +41,7 @@ jobs:
sudo apt-get update
sudo apt-get install jq
- name: Set up Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ inputs.java-version }}
Expand All @@ -68,7 +68,7 @@ jobs:
# Prevent conflicts with otherwise set up CodeQL scan
jq 'setpath(path(.runs[].tool.driver.name); "Jenkins Security Scan") | setpath(path(.runs[].tool.driver.organization); "Jenkins Project")' output.sarif > jenkins-security-scan.sarif
- name: Archive SARIF
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: jenkins-security-scan.sarif
name: Jenkins Security Scan SARIF
Expand Down

0 comments on commit 5ac025d

Please sign in to comment.