Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BYK committed Jan 16, 2025
1 parent 679e0c5 commit e5c3aee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ jobs:
LATEST_TAG=$(curl -s https://api.github.com/repos/getsentry/self-hosted/releases/latest | jq -r '.tag_name')
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
- name: Get Compose
# TODO: Replace this with `@master` after landing
uses: getsentry/self-hosted/get-compose-action@byk/ref/upgrade-compose

- name: Checkout latest release
uses: actions/checkout@v4
with:
ref: ${{ env.LATEST_TAG }}

- name: Get Compose
uses: ./get-compose-action

- name: Compute Docker Volume Cache Key
id: cache_key
run: |
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
fi
- name: Get Compose
uses: ${{ github.action_path }}get-compose-action
uses: ./get-compose-action

- name: Compute Docker Volume Cache Key
id: cache_key
Expand Down
1 change: 1 addition & 0 deletions get-compose-action/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ runs:
using: "composite"
steps:
- name: Get Compose
shell: bash
run: |
# Docker Compose v1 is installed here, remove it
sudo rm -f "/usr/local/bin/docker-compose"
Expand Down

0 comments on commit e5c3aee

Please sign in to comment.