Skip to content

Commit

Permalink
update github actions (#1307)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb authored Mar 14, 2024
1 parent c083d6b commit 80d93a4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Update Dependency Graph
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v2
with:
## Optional: Define the working directory of your build.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/orch-build-tag-publish-and-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/checkout@v4'

- name: Bump the tag to a new version
uses: databiosphere/github-actions/actions/[email protected]
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

# Install gcloud, `setup-gcloud` automatically picks up authentication from `auth`.
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
uses: 'google-github-actions/setup-gcloud@v2'

- name: Explicitly auth Docker for Artifact Registry
run: gcloud auth configure-docker $GOOGLE_DOCKER_REPOSITORY --quiet
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
- uses: TimonVS/pr-labeler-action@v5
with:
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: DSP AppSec Trivy check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# The Dockerfile copies this, so it needs to exist for the build to succeed
- run: touch FireCloud-Orchestration.jar
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4

# coursier cache action caches both coursier and sbt caches
- name: coursier-cache-action
uses: coursier/cache-action@v6

- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: 'sbt'

- name: Run tests
env:
Expand All @@ -34,5 +35,5 @@ jobs:
FIRE_CLOUD_ID: 123
run: sbt clean coverage test coverageReport

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
if: ${{ always() }}

0 comments on commit 80d93a4

Please sign in to comment.