Skip to content

Commit

Permalink
build(deps): update github_actions dependencies (#1543)
Browse files Browse the repository at this point in the history
* build(deps): bump nikitasavinov/checkstyle-action from 0.4.0 to 0.6.0

* build(deps): bump codecov/codecov-action from 2 to 3

* build(deps): bump actions/upload-artifact from 2 to 3

* build(deps): bump actions/download-artifact from 2 to 3

* build(deps): bump actions/checkout from 2 to 3
  • Loading branch information
juliapampus committed Jun 24, 2022
1 parent 385be86 commit a25009f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

# Initializes the CodeQL tools for scanning.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performancetests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
SUCCESS_PERCENTAGE: 100.0

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Performance Tests
run: ./gradlew -p system-tests/tests test -DincludeTags="PerformanceTest"

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: always()
with:
name: Gatling reports
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scan-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check for new entries
uses: brettcannon/check-for-changed-files@v1
with:
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: deepakputhraya/action-pr-title@master
with:
# Match pull request titles conventional commit syntax (https://www.conventionalcommits.org/en/v1.0.0/)
Expand Down
46 changes: 23 additions & 23 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
Checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# lets run Checkstyle explicitly (as opposed to within gradle) due to better reporting capabilities
- name: Run Checkstyle
if: github.event_name == 'pull_request'
uses: nikitasavinov/checkstyle-action@0.4.0
uses: nikitasavinov/checkstyle-action@0.6.0
with:
checkstyle_config: resources/edc-checkstyle-config.xml
level: error
Expand All @@ -38,7 +38,7 @@ jobs:
Dependency-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Dependency rules report # possible severity values: <'fail'|'warn'|'ignore'>
Expand All @@ -50,7 +50,7 @@ jobs:
OpenAPI-Definitions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Save previous OpenAPI definition
Expand All @@ -75,7 +75,7 @@ jobs:
env:
JACOCO: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Run unit tests
Expand All @@ -86,7 +86,7 @@ jobs:
Sanity-Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Check Sample 01
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
runs-on: ubuntu-latest
name: Test Helm chart in minikube
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Install and start minikube
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
AZURITE_ACCOUNTS: account1:key1;account2:key2

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Azure Storage Tests
Expand All @@ -206,7 +206,7 @@ jobs:
./gradlew -p system-tests/azure-tests test -DincludeTags="AzureStorageIntegrationTest"
- name: "Publish Gatling report"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: Gatling reports
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
COSMOS_URL: ${{ secrets.COSMOS_URL }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Azure CosmosDB Tests
Expand All @@ -259,7 +259,7 @@ jobs:
MINIO_ROOT_PASSWORD: password

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: AWS Tests
Expand All @@ -274,7 +274,7 @@ jobs:
- name: reset permissions to permit checkout (because the omejdn volumes)
run: sudo chown -R $USER:$USER ${{ github.workspace }}

- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- run: docker run -d --rm -p 4567:4567 -v ${{ github.workspace }}/extensions/iam/daps/src/test/resources/config:/opt/config -v ${{ github.workspace }}/extensions/iam/daps/src/test/resources/keys:/opt/keys ghcr.io/fraunhofer-aisec/omejdn-server:1.3.1
Expand All @@ -296,7 +296,7 @@ jobs:
POSTGRES_PASSWORD: password

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Postgresql Tests
Expand All @@ -307,7 +307,7 @@ jobs:
End-To-End-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: End to End Integration Tests
Expand All @@ -316,7 +316,7 @@ jobs:
command: ./gradlew test -DincludeTags="EndToEndTest"

- name: "Publish Gatling report"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: Gatling reports
Expand All @@ -327,7 +327,7 @@ jobs:
JACOCO: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Component Tests
Expand All @@ -338,7 +338,7 @@ jobs:
OpenTelemetry-Integration-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: Download opentelemetry javaagent
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-build

- name: 'Az CLI login'
Expand All @@ -409,7 +409,7 @@ jobs:
./gradlew -p system-tests/azure-data-factory-tests test -DincludeTags="AzureDataFactoryIntegrationTest"
- name: "Publish Gatling report"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: Gatling reports
Expand All @@ -436,7 +436,7 @@ jobs:
if: always()
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Publish Test Results
Expand All @@ -453,10 +453,10 @@ jobs:
if: always()
steps:
# Sources are needed for Codecov report
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: artifacts
- name: CodeCov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3

0 comments on commit a25009f

Please sign in to comment.