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/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Lint workflows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: reviewdog/action-actionlint@6fb7acc99f4a1008869fa8a0f09cfca740837d9d # v1.72.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
workspace: ${{ fromJson(needs.detect-workspaces.outputs.matrix) }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
matrix:
workspace: ${{ fromJson(inputs.workspace) }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}
Expand All @@ -45,7 +45,7 @@
with:
shared-key: ${{ matrix.workspace }}
- name: Format check
run: cargo fmt --verbose -p $WORKSPACE -- --check

Check warning on line 48 in .github/workflows/check.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/check.yml:48:9: shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck]
env:
WORKSPACE: ${{ matrix.workspace }}
- name: Clippy
Expand All @@ -53,10 +53,10 @@
env:
WORKSPACE: ${{ matrix.workspace }}
- name: Build
run: cargo build --verbose -p $WORKSPACE

Check warning on line 56 in .github/workflows/check.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/check.yml:56:9: shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck]
env:
WORKSPACE: ${{ matrix.workspace }}
- name: Test
run: cargo test --verbose -p $WORKSPACE

Check warning on line 60 in .github/workflows/check.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/check.yml:60:9: shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck]
env:
WORKSPACE: ${{ matrix.workspace }}
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Set health checks to wait until postgres has started
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@efa25f7f19611383d5b0ccf2d1c8914531636bf9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect-workspaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'ShuttlePub' && !contains(github.event.head_commit.message, '[CI-SKIP]') }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/read-toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'ShuttlePub' && !contains(github.event.head_commit.message, '[CI-SKIP]') }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
env:
WORKSPACE: ${{ inputs.workspace }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}
Expand All @@ -53,12 +53,12 @@
with:
shared-key: ${{ inputs.workspace }}
- name: Format check
run: cargo fmt --verbose -p $WORKSPACE -- --check

Check warning on line 56 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:56:9: shellcheck reported issue in this script: SC2086:info:1:24: Double quote to prevent globbing and word splitting [shellcheck]
- name: Clippy
run: cargo clippy --verbose -p "$WORKSPACE" --all-targets -- -D warnings
- name: Build
run: cargo build --verbose -p $WORKSPACE

Check warning on line 60 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:60:9: shellcheck reported issue in this script: SC2086:info:1:26: Double quote to prevent globbing and word splitting [shellcheck]
- name: Test
run: cargo test --verbose -p $WORKSPACE

Check warning on line 62 in .github/workflows/test-psql.yml

View workflow job for this annotation

GitHub Actions / Lint workflows

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/test-psql.yml:62:9: shellcheck reported issue in this script: SC2086:info:1:25: Double quote to prevent globbing and word splitting [shellcheck]
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres_test
Loading