Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/checkout action to v4 #110

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
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