Skip to content
Closed
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/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository"
uses: "actions/checkout@v6"
uses: "actions/checkout@v6.0.3"
- name: "Retrieve build output"
uses: "actions/download-artifact@v8"
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
node-version: ${{ steps.node-version.outputs.node }}
steps:
- name: "Check out repository"
uses: "actions/checkout@v6"
uses: "actions/checkout@v6.0.3"
with:
fetch-depth: 0
- name: "Node version"
Expand Down Expand Up @@ -95,7 +95,7 @@
url: "https://hub.docker.com/r/textbook/fauxauth"
steps:
- name: "Check out repository"
uses: "actions/checkout@v6"
uses: "actions/checkout@v6.0.3"
- name: "Get metadata"
id: metadata
run: |
Expand Down Expand Up @@ -177,7 +177,7 @@
node-version: "lts/*"
- name: "Publish to NPM"
run: |
npm install --global npm@latest

Check warning on line 180 in .github/workflows/push.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=textbook_fauxauth&issues=AZ7b3-DU2C0-N9VjCDYy&open=AZ7b3-DU2C0-N9VjCDYy&pullRequest=439
npm publish --provenance package.tgz
smoke-test:
needs:
Expand All @@ -186,7 +186,7 @@
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository"
uses: "actions/checkout@v6"
uses: "actions/checkout@v6.0.3"
- name: "Validate published artifacts"
run: |
./bin/smoke-test.sh "${{ github.ref_name }}"
Loading