Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand All @@ -46,7 +46,7 @@ jobs:

- name: Upload Bandit HTML Report as Artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: "bandit-report-summary_${{ env.REPORT_DATE }}"
path: ${{ env.HTML_REPORT_PATH }}
6 changes: 3 additions & 3 deletions .github/workflows/docker-bench-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
docker-bench-security | tee results/docker_bench_security_report.txt

- name: Upload Security Bench Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: docker_bench_security-report
path: results/docker_bench_security_report.txt
4 changes: 2 additions & 2 deletions .github/workflows/experimental_workflow_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gandlf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
NUM_COLLABORATORS: 2

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

Expand All @@ -46,7 +46,7 @@ jobs:
mkdir -p gandlf $HOME/results

- name: Install GaNDLF repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'mlcommons/GaNDLF'
fetch-depth: 2 # needed for detecting changes
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Upload Artifacts
id: upload_artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: ${{ always() }}
with:
name: gandlf_artifacts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/hadolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
Expand All @@ -31,7 +31,7 @@ jobs:
docker run -v ${PWD}/openfl-docker:/openfl-docker --rm -i hadolint/hadolint hadolint -t error /openfl-docker/Dockerfile.base
docker run -v ${PWD}/openfl-docker:/openfl-docker --rm -i hadolint/hadolint hadolint -t error -f json /openfl-docker/Dockerfile.base > hadolint_output.json
- name: Upload Hadolint JSON Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: hadolint-report
path: hadolint_output.json
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install linters
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openfl-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ospdt_dependency_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.12'

- name: Cache pip packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ env.CACHE_VERSION }}-${{ hashFiles('**/requirements.txt') }}
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
${{ env.OUTPUT_DIR }}/${{ env.EXCEL_FILE }}

- name: Upload SPDX JSON Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: openfl_spdx_report
path: ${{ env.OUTPUT_DIR }}/${{ env.SPDX_JSON }}
if-no-files-found: error

- name: Upload Excel License Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: OpenFL_Dependency_report
path: ${{ env.OUTPUT_DIR }}/${{ env.EXCEL_FILE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pq_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
commit_id: ${{ steps.set_commit_id.outputs.commit_id }}
steps:
- name: Checkout OpenFL repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set commit ID
id: set_commit_id
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_nightly_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
(github.event_name == 'workflow_dispatch')
steps:
- name: Checkout OpenFL repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

- name: Set up Python
id: setup_python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/straggler-handling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python 3
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/task_runner_basic_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/task_runner_connectivity_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/task_runner_dockerized_ws_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/task_runner_fed_analytics_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/task_runner_fedeval_dws_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2 # needed for detecting changes
submodules: "true"
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2 # needed for detecting changes
submodules: "true"
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2 # needed for detecting changes
submodules: "true"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/task_runner_fedeval_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/task_runner_flower_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- name: Checkout OpenFL repository
id: checkout_openfl
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ env.COMMIT_ID }}

Expand Down
Loading
Loading