Skip to content

Commit

Permalink
chore: dump gha for node deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaqq committed Oct 8, 2024
1 parent 50b42d0 commit b4e7f56
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- "3.10"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand All @@ -34,9 +34,9 @@ jobs:
- "3.10"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run build test target
Expand All @@ -54,9 +54,9 @@ jobs:
- "3.10"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand All @@ -78,7 +78,7 @@ jobs:
- "3.10"
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
# juju model-defaults apt-http-proxy=$PROXY apt-https-proxy=$PROXY juju-http-proxy=$PROXY juju-https-proxy=$PROXY snap-http-proxy=$PROXY snap-https-proxy=$PROXY
# juju model-defaults
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_candidate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "next-test=$next_test" >> $GITHUB_ENV
echo "$next_test" > ~/juju-last-candidate-version
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ env.next-test != 'NA' }}
- name: Setup operator environment
if: ${{ env.next-test != 'NA' }}
Expand All @@ -57,7 +57,7 @@ jobs:
juju-channel: 3.4/candidate
- name: Setup Python
if: ${{ env.next-test != 'NA' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand All @@ -69,7 +69,7 @@ jobs:
run: tox -e integration -- -n 1
- name: Upload artifact
if: ${{ env.next-test != 'NA' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: juju-last-candidate-version
path: ~/juju-last-candidate-version
6 changes: 3 additions & 3 deletions .github/workflows/test_edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "next-test=$next_test" >> $GITHUB_ENV
echo "$next_test" > ~/juju-last-edge-version
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ env.next-test != 'NA' }}
- name: Setup operator environment
if: ${{ env.next-test != 'NA' }}
Expand All @@ -57,7 +57,7 @@ jobs:
juju-channel: 3.4/edge
- name: Setup Python
if: ${{ env.next-test != 'NA' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand All @@ -69,7 +69,7 @@ jobs:
run: tox -e integration -- -n 1
- name: Upload artifact
if: ${{ env.next-test != 'NA' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: juju-last-edge-version
path: ~/juju-last-edge-version

0 comments on commit b4e7f56

Please sign in to comment.