Skip to content

Commit

Permalink
upgrade github workflow versions - part 2 (#2696)
Browse files Browse the repository at this point in the history
* upgrade github workflow versions - part 2

* update
  • Loading branch information
Ponnia-M authored Mar 1, 2024
1 parent 4ca5c93 commit 1e83208
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/delete-old-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- id: checkUserMember
# Only check for manual runs, not scheduled runs
if: github.event_name == 'workflow_dispatch'
uses: tspascoal/get-user-teams-membership@v2
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'vro-restricted'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-published-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- id: checkUserMember
# Only check for manual runs, not scheduled runs
if: github.event_name == 'workflow_dispatch'
uses: tspascoal/get-user-teams-membership@v2
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'vro-restricted'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-workflow-runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- id: checkUserMember
# Only check for manual runs, not scheduled runs
if: github.event_name == 'workflow_dispatch'
uses: tspascoal/get-user-teams-membership@v2
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'vro-restricted'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- id: checkUserMember
# Only check for manual runs against prod
if: github.event_name == 'workflow_dispatch' && inputs.target_env == 'prod'
uses: tspascoal/get-user-teams-membership@v2
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'vro-restricted'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# This takes about 1 minute, so don't run on PRs
# if: github.event_name != 'pull_request'
id: jacoco_reporter
uses: PavanMudigonda/jacoco-reporter@v4.8
uses: PavanMudigonda/jacoco-reporter@v4.9
# Skip if Dependabot created the PR due to check-runs permission error
if: github.actor != 'dependabot[bot]'
with:
Expand All @@ -83,7 +83,7 @@ jobs:
publish_only_summary: false
- name: "Add JaCoCo Coverage Report as PR comment"
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
uses: madrapps/jacoco-report@v1.3
uses: madrapps/jacoco-report@v1.6.1
with:
paths: ${{ github.workspace }}/build/reports/jacoco/jacocoAggregatedReport/jacocoAggregatedReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- id: checkUserMember
# Only check for manual runs against prod
if: github.event_name == 'workflow_dispatch' && inputs.target_env == 'prod'
uses: tspascoal/get-user-teams-membership@v2
uses: tspascoal/get-user-teams-membership@v3
with:
username: ${{ github.actor }}
team: 'vro-restricted'
Expand Down

0 comments on commit 1e83208

Please sign in to comment.