Skip to content

Commit

Permalink
Update to actions/checkout@v4 🙃
Browse files Browse the repository at this point in the history
(this is effectively a functional no-op solving a "problem" that really ought to be solved at a different level within GHA)
  • Loading branch information
tianon committed Jul 9, 2024
1 parent b24dd1b commit 3c66d32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: tianon/bashbrew@tianon
- id: generate-jobs
name: Generate Jobs
Expand All @@ -37,7 +37,7 @@ jobs:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# TODO something clever with https://github.com/marketplace/actions/changed-files
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: generate-jobs
name: Generate Jobs
run: |
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
dir: ${{ matrix.dir }}
branch: update/${{ matrix.dir }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bashbrew
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
env:
branch: 'update-versions'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-templating.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Check For Uncomitted Changes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Apply Templates
run: ./parallel.sh apply-templates.sh
- name: Git Diff (informational)
Expand Down

0 comments on commit 3c66d32

Please sign in to comment.