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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: 📦 Setup bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
Expand All @@ -28,7 +28,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 31 in .github/workflows/ci.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" can lead to the execution of shell scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=jpb06_effect-octokit-layer&issues=AZ6I2MpPufNRQKyofG2Y&open=AZ6I2MpPufNRQKyofG2Y&pullRequest=273

- name: 📓 Format
run: bun run format-ci
Expand All @@ -41,7 +41,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: 📦 Setup bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
Expand All @@ -53,7 +53,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

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

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" can lead to the execution of shell scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=jpb06_effect-octokit-layer&issues=AZ6I2MpPufNRQKyofG2Z&open=AZ6I2MpPufNRQKyofG2Z&pullRequest=273

- name: 🔎 Type check
run: bun type-check
Expand All @@ -63,7 +63,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: 📦 Setup bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
Expand All @@ -75,7 +75,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 78 in .github/workflows/ci.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" can lead to the execution of shell scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=jpb06_effect-octokit-layer&issues=AZ6I2MpPufNRQKyofG2a&open=AZ6I2MpPufNRQKyofG2a&pullRequest=273

- name: 🧪 Tests
run: bun test-ci
Expand All @@ -92,7 +92,7 @@
needs: [lint, typecheck, test]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: 👀 Get coverage artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-badges-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
timeout-minutes: 10
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0

Expand All @@ -31,7 +31,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 34 in .github/workflows/coverage-badges-generation.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" can lead to the execution of shell scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=jpb06_effect-octokit-layer&issues=AZ6I2MpgufNRQKyofG2b&open=AZ6I2MpgufNRQKyofG2b&pullRequest=273

- name: 🔍 Tests
run: bun run test-ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
manifest-file: release-please/manifest.json

- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
if: ${{ steps.release.outputs.release_created }}

- name: 📦 Setup bun
Expand All @@ -46,7 +46,7 @@

- name: 📥 Install deps
if: ${{ steps.release.outputs.release_created }}
run: bun install --frozen-lockfile

Check warning on line 49 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" can lead to the execution of shell scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=jpb06_effect-octokit-layer&issues=AZ6I2MpoufNRQKyofG2c&open=AZ6I2MpoufNRQKyofG2c&pullRequest=273

- name: ⚙️ Building package
if: ${{ steps.release.outputs.release_created }}
Expand Down