Skip to content
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/base-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
max-parallel: 1

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-latest-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
latest-release-url: https://quay.io/api/v1/repository/containers/buildah/tag/
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Check and modify ${{ matrix.image }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Login to container registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login -u ${{ github.repository_owner }} --password-stdin ghcr.io
- name: Install Go
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- image: git
dockerfile: Dockerfile.ubi9
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Go
uses: actions/setup-go@v6
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
runs-on: oracle-vm-16cpu-64gb-x86-64
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install Go
uses: actions/setup-go@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-nightly-assets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write # To be able to update releases.

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Get current month
id: currentmonth
run: echo "date=$(date +'%Y-%m')" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
IMAGE_NAMESPACE: ${{ github.repository }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version: '1.26.x'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup release ${{ inputs.release }}
run: |
echo "Creating release ${{ inputs.release }} from previous tag ${{ inputs.tags }} with ref ${{ inputs.git-ref }}"
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ inputs.git-ref }}
fetch-depth: 0 # Fetch all history, needed for release note generation.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/report-release-vulnerabilities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: main
- name: Install Go
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: ./.github/download-latest-release.sh
working-directory: ${{ github.workspace }}/main
- name: Checkout release branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: release-branch
ref: ${{ steps.download-latest-release.outputs.release-branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-tekton-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: go/src/github.com/shipwright-io/build
token: ${{ secrets.SHIPWRIGHT_BUILD_WRITE_WORKFLOWS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: go/src/github.com/shipwright-io/build
- name: Install Go
Expand Down
Loading