Skip to content

Commit

Permalink
Upgrade deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardsurfer committed Sep 11, 2024
1 parent 68461ff commit 7f71be6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macrobenchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
macrobenchmark: ${{ steps.filter.outputs.macrobenchmark }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: dorny/paths-filter@v2
uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
Expand All @@ -30,14 +30,14 @@ jobs:
build:
needs: changes
# Only run action for the main repo & not forks and if change is in macrobenchmark sample
if: github.repository_owner == 'android' && (needs.changes.outputs.macrobenchmark == 'true' || github.event_name == 'workflow_dispatch')
if: github.repository_owner == 'android' && (needs.changes.outputs.macrobenchmark == 'false' || github.event_name == 'workflow_dispatch')
runs-on: macos-latest
defaults:
run:
working-directory: ./MacrobenchmarkSample
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup JDK
id: setup-java
Expand Down

0 comments on commit 7f71be6

Please sign in to comment.