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
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout all PR branch and commits
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: ${{ github.event.pull_request.commits }}
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup go
uses: actions/setup-go@v5
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- validate
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup docker buildx
run: docker buildx create --name conftestbuild --use
Expand All @@ -124,7 +124,7 @@ jobs:
- validate
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: setup docker buildx
run: docker buildx create --name conftestbuild --use
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: read
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

# It is important to check the GoReleaser config before pushing to
# Dockerhub to avoid having mismatches between what is in Dockerhub
Expand All @@ -34,7 +34,7 @@ jobs:
- check
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: login to docker hub
uses: docker/login-action@v3
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- check
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: login to docker hub
uses: docker/login-action@v3
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- docker-examples
steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Need to fetch the full history for the GoReleaser changelog.

Expand Down
Loading