Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/opendownstream-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Self'
uses: actions/checkout@v5
uses: actions/checkout@v6
# Because we use pull_request_target, this checks out the code from the default branch, NOT the PR branch

- name: 'Setup Go'
Expand All @@ -23,7 +23,7 @@ jobs:
go-version: 'stable'

- name: 'Checkout forked buildah'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'podmanbot/buildah' # The target repository
path: 'buildah' # Checkout into a sub-directory
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
codespell:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: install deps
# Version of codespell bundled with Ubuntu is way old, so use pip.
run: pip install --break-system-packages codespell==v2.4.1
Expand All @@ -30,7 +30,7 @@ jobs:
run:
working-directory: ./common
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2
- uses: actions/setup-go@v6
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
env:
GIT_CHECK_EXCLUDE: "./vendor"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# By default github actions creates a merge commit which fails the validation,
# we only must validate the actual commits of the author.
Expand All @@ -93,7 +93,7 @@ jobs:
go-vendor:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: 1.25.x
Expand Down