Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix(ci): remove space between equals and unneeded needs
  • Loading branch information
GregoryDosh committed Feb 16, 2022
commit a7715d7e92a6e33e812c0b596ed417fd053e4bcf
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ jobs:
- name: integration test with fake server
run: make docker-build && make docker-test

publish-test:
gha-publish-test:
runs-on: ubuntu-latest
needs:
- unit-test
- integration-test
container:
image: golang:1.17
steps:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ BUILD_DATE = $(shell date +%Y-%m-%dT%H:%M:%SZ)
# This is the ONLY place these hardcoded versions are set.
# They're used in the Dockerfile the GitHub Actions workflow,
# the integration tests, and the static build flags for Go.
OPENSSH_VERSION = 8.8_p1-r1
# Note: No space between the equals and the value else issues arise.
OPENSSH_VERSION=8.8_p1-r1
SSHPASS_VERSION=1.09-r0

# check if a git commit sha is already set
Expand Down