Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
# Hold back brand-new releases: the hours after publication are the window
# in which a compromised package version is most likely to still be live.
cooldown:
default-days: 7
groups:
dependencies:
patterns:
- "*"

# Keeps the exact action versions pinned in .github/workflows from going stale.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
groups:
actions:
patterns:
- "*"
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
shard: [1, 2, 3, 4, 5, 6, 7, 8]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.4.0
with:
lfs: true
- uses: actions/cache@v3
- uses: actions/cache@v3.5.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- uses: actions/cache@v3
- uses: actions/cache@v3.5.0
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-e2e
Expand All @@ -50,7 +50,7 @@ jobs:
env:
CI: true
- name: Push test report to artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.6.2
if: failure()
with:
name: Test Results ${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-to-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/checkout@v4.4.0
- uses: actions/cache@v3.5.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -24,7 +24,7 @@ jobs:
rm -rf dist/samples/**/package-lock.json
rm -rf dist/samples/**/app/.gitignore
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v4.3.1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push-to-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/checkout@v4.4.0
- uses: actions/cache@v3.5.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -23,7 +23,7 @@ jobs:
rm -rf dist/samples/**/package-lock.json
rm -rf dist/samples/**/app/.gitignore
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v4.3.1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.4.0
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
persist-credentials: false

- uses: actions/setup-node@v4
- uses: actions/setup-node@v4.4.0
with:
node-version: '22'
cache: 'npm'
Expand All @@ -42,7 +42,7 @@ jobs:
GH_TOKEN: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
uses: cycjimmy/semantic-release-action@v6.0.0
with:
extra_plugins: |
@semantic-release/commit-analyzer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
github.event.review.state == 'approved')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/checkout@v4.4.0
- uses: actions/cache@v3.5.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-devdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Dispatch Release Event
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v2.1.2
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
repository: woosmap/developers.woosmap.com
Expand Down
Loading