Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent 8f3f919 commit 1963d5c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch_automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
KUBEFLOW_BOT_TOKEN: ${{ secrets.KUBEFLOW_BOT_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: canonical/bundle-kubeflow
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/on_pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
name: Lint Code
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install tox
- run: tox -e lint

branch_creation_tests:
name: Branch Creation Script Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install tox
- run: tox -e test_branch_creation

batch_release_charms_tests:
name: Batch Release Charms Script Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install tox
- run: tox -e test_batch_release_charms

Expand All @@ -35,7 +35,7 @@ jobs:
steps:
# Set things up like a charm would. Get juju and microk8s
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
Expand Down
2 changes: 1 addition & 1 deletion actions/contributing-update/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
runs:
using: 'composite'
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/checkout@v4'
- name: 'Make temporary dir for this job'
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion actions/dump-charm-debug-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: 'composite'
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup

Expand Down
2 changes: 1 addition & 1 deletion actions/get-charm-paths/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ outputs:
runs:
using: 'composite'
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/checkout@v4'
- name: 'Get paths for all charms in repo'
id: get-charm-paths
shell: bash
Expand Down

0 comments on commit 1963d5c

Please sign in to comment.