Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/reusable-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
if: inputs.run_cross_version_tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.10"
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
if: inputs.run_cross_version_tests
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.10"
Expand All @@ -75,7 +75,7 @@ jobs:
- 9997:9997
- 9996:9996
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download pybf whl
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
matrix:
pybf_version: ${{ fromJson(needs.get_pybf_versions.outputs.versions) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download bf image
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
bf_image_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download bf image
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
allinone_image_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download allinone image
uses: actions/download-artifact@v6
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/reusable-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: get_build_id
run: echo "build_id=$(TZ=America/Los_Angeles date +'%Y.%m.%d').${{ github.run_number }}" >> $GITHUB_OUTPUT
- name: Checkout Batfish repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ inputs.BATFISH_GITHUB_BATFISH_REPO }}"
path: batfish
Expand All @@ -56,7 +56,7 @@ jobs:
echo "batfish_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "batfish_resolved_sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Checkout pybatfish repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ inputs.BATFISH_GITHUB_PYBATFISH_REPO }}"
path: pybatfish
Expand All @@ -82,9 +82,9 @@ jobs:
id: date
run: echo "ymd=$(TZ=America/Los_Angeles date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Checkout Docker repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Checkout Batfish repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ inputs.BATFISH_GITHUB_BATFISH_REPO }}"
path: batfish
Expand Down Expand Up @@ -138,9 +138,9 @@ jobs:
needs:
- bf_version
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Checkout pybf repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ inputs.BATFISH_GITHUB_PYBATFISH_REPO }}"
path: pybatfish
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- bf_version
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download jar
uses: actions/download-artifact@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
mkdir dist
mv pybatfish*.whl dist/
- name: Checkout pybf repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: "${{ inputs.BATFISH_GITHUB_PYBATFISH_REPO }}"
path: pybatfish
Expand Down