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
4 changes: 2 additions & 2 deletions .github/workflows/app_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
MONITOR_DB_PASSWORD: monitor_pw
MONITOR_DB_NAME: monitor_db
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
sparse-checkout: |
app
Expand All @@ -48,7 +48,7 @@ jobs:
- name: "Run test"
run: go run gotest.tools/gotestsum@v1.12.3 --junitfile ~/test-results.xml
- name: "Upload Results"
uses: mikepenz/action-junit-report@e08919a3b1fb83a78393dfb775a9c37f17d8eea6 # v6.0.1
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc # v6.1.0
if: ${{ success() || failure() }}
continue-on-error: true
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/front_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
run:
working-directory: ./front
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
sparse-checkout: |
front
Expand All @@ -21,7 +21,7 @@ jobs:
with:
package_json_file: front/package.json
- name: "Set up Node.js"
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: 'pnpm'
node-version-file: front/.node-version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/show-migration-query.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
MONITOR_DB_NAME: monitor_db
steps:
- name: Checkout base schema.sql
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
id: base
with:
ref: ${{ inputs.base_commit_hash }}
path: ./base
sparse-checkout: |
schema/database
- name: Checkout latest schema.sql
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
id: latest
with:
path: ./latest
Expand Down