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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promote-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
make-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: ncipollo/release-action@v1
with:
Expand All @@ -33,7 +33,7 @@ jobs:
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set variables
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promote-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
make-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Get Branch
run: |
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set variables
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}

- name: checkout rie
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: csm-redfish-interface-emulator
repository: Cray-HPE/csm-redfish-interface-emulator
ref: v1.5.0
fetch-depth: 0

- name: checkout shellspec
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: shellspec
ref: c209cb49a60b2a7727632373caf37e98649104f7 # pins at a specific commit for stability
Expand Down