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/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.4.0
- uses: actions/checkout@v7.0.1
with:
lfs: true
- uses: actions/cache@v3.5.0
- uses: actions/cache@v6.1.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- uses: actions/cache@v3.5.0
- uses: actions/cache@v6.1.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.6.2
uses: actions/upload-artifact@v7.0.1
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.4.0
- uses: actions/cache@v3.5.0
- uses: actions/checkout@v7.0.1
- uses: actions/cache@v6.1.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.3.1
uses: aws-actions/configure-aws-credentials@v6.2.3
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.4.0
- uses: actions/cache@v3.5.0
- uses: actions/checkout@v7.0.1
- uses: actions/cache@v6.1.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.3.1
uses: aws-actions/configure-aws-credentials@v6.2.3
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
4 changes: 2 additions & 2 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.4.0
- uses: actions/checkout@v7.0.1
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
persist-credentials: false

- uses: actions/setup-node@v4.4.0
- uses: actions/setup-node@v7.0.0
with:
node-version: '22'
cache: 'npm'
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.4.0
- uses: actions/cache@v3.5.0
- uses: actions/checkout@v7.0.1
- uses: actions/cache@v6.1.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.1.2
uses: peter-evans/repository-dispatch@v4.0.1
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
repository: woosmap/developers.woosmap.com
Expand Down
Loading