Skip to content

Commit

Permalink
chore: don't use the deprecated action version (#2159)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirevwe authored Sep 25, 2024
1 parent b336438 commit 578d403
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
restore-keys: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Get and verify dependencies
run: go mod download && go mod verify
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ jobs:
name: Build UI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build Artifact
run: "make ui_install type=ce"

- name: Archive Build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist-without-markdown
path: |
Expand All @@ -34,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download Build Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: dist-without-markdown
path: api/ui/build
Expand All @@ -54,7 +55,7 @@ jobs:
pip install --upgrade cloudsmith-cli
echo $(cloudsmith --version)
- uses: goreleaser/goreleaser-action@v2
- uses: goreleaser/goreleaser-action@v6
name: Release, Upload & Publish
with:
version: latest
Expand Down
1 change: 0 additions & 1 deletion docker-compose.dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ version: "3"
volumes:
postgres_data:
redis_data:
typesense_data:

services:
jaeger:
Expand Down

0 comments on commit 578d403

Please sign in to comment.