Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 4, 2023
1 parent 53468a8 commit 5663268
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flux-local-diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- kustomization
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./action/diff
id: diff
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flux-local-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- tests/testdata/cluster6
- tests/testdata/cluster7
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./action/test
with:
enable-helm: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
- name: Run yamllint
uses: ibiqlik/action-yamllint@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- "3.11"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions action/diff/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ runs:
pip install -e ${{ github.action_path }}/../../
shell: bash
- name: Checkout PR branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: pr
- name: Checkout live branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.live-branch }}
path: live
Expand Down

0 comments on commit 5663268

Please sign in to comment.