Skip to content

Commit

Permalink
Try fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan202 authored and rickie committed Apr 15, 2023
1 parent eaa9d7e commit 3b588a7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
# Error Prone checks available only from other artifact repositories.
- name: Check out code
uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up JDK
uses: actions/[email protected]
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ on:
pull_request:
push:
branches: [ master, website ]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
permissions:
contents: read
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/[email protected]
with:
persist-credentials: false
- uses: ruby/[email protected]
with:
working-directory: ./website
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/openssf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
steps:
- name: Check out code
uses: actions/[email protected]
# XXX: Also apply elsewhere?
with:
persist-credentials: false
- name: Run OpenSSF Scorecard analysis
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pitest-analyze-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/[email protected]
with:
fetch-depth: 2
persist-credentials: false
- name: Set up JDK
uses: actions/[email protected]
with:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/pitest-update-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@ on:
- completed
permissions:
actions: read
checks: write
contents: read
pull-requests: write
jobs:
update-pr:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
actions: read
checks: write
contents: read
pull-requests: write
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up JDK
uses: actions/[email protected]
with:
Expand Down

0 comments on commit 3b588a7

Please sign in to comment.