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
8 changes: 4 additions & 4 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Run unit tests on *Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Unit tests
run: make ci/test

Expand All @@ -33,7 +33,7 @@ jobs:
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
- name: Install Go
Expand All @@ -54,7 +54,7 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.OHAI_GPG_PASSPHRASE }}
GPG_PRIVATE_KEY_BASE64: ${{ secrets.OHAI_GPG_PRIVATE_KEY_BASE64 }} # base64 encoded
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Pre release
run: make ci/prerelease
- if: ${{ github.event.release.prerelease }}
Expand All @@ -81,7 +81,7 @@ jobs:
needs: [prerelease]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Reflect failure in release title
env:
GH_TOKEN: "${{ secrets.COREINT_BOT_TOKEN }}"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Run all static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
Expand All @@ -38,7 +38,7 @@ jobs:
name: Run unit tests on *Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Unit tests
run: make ci/test

Expand All @@ -52,7 +52,7 @@ jobs:
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
- name: Install Go
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
env:
DOCKER_BUILDKIT: '1' # Setting DOCKER_BUILDKIT=1 ensures TARGETOS and TARGETARCH are populated
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
Expand All @@ -116,7 +116,7 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.OHAI_GPG_PASSPHRASE }}
GPG_PRIVATE_KEY_BASE64: ${{ secrets.OHAI_GPG_PRIVATE_KEY_BASE64 }} # base64 encoded
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: |
git tag "$TAG"
if [ -z "$GPG_PASSPHRASE" ]; then
Expand Down
Loading