Skip to content

Commit 3881105

Browse files
committed
Merge branch 'master' into beta
2 parents 6775287 + 2dbe628 commit 3881105

File tree

7 files changed

+29
-21
lines changed

7 files changed

+29
-21
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
# We must fetch at least the immediate parents so that if this is
3333
# a pull request then we can checkout the head.
3434
fetch-depth: 2
3535

3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@v1
37+
uses: github/codeql-action/init@v2
3838
with:
3939
languages: ${{ matrix.language }}
4040

4141
- name: Autobuild
42-
uses: github/codeql-action/autobuild@v1
42+
uses: github/codeql-action/autobuild@v2
4343

4444
- name: Perform CodeQL Analysis
45-
uses: github/codeql-action/analyze@v1
45+
uses: github/codeql-action/analyze@v2

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: write # for actions/stale to close stale PRs
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/stale@v4
19+
- uses: actions/stale@v5
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222
stale-issue-message: 'Marking Issue as stale, will be closed in 7 days if no more activity is seen'

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
matrix:
2020
node-version: [12.x, 14.x, 16.x, 18.x]
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
if: github.event.inputs.git-ref == ''
2424
with:
2525
fetch-depth: 0 # always fetch everything to be sure for codecov
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
if: github.event.inputs.git-ref != ''
2828
with:
2929
ref: ${{ github.event.inputs.git-ref }}
3030
fetch-depth: 5 # because this is an manual trigger, only fetch the latest 5
3131
- name: Use Node.js ${{ matrix.node-version }}
32-
uses: actions/setup-node@v2
32+
uses: actions/setup-node@v3
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
- name: Install node_modules
@@ -44,16 +44,16 @@ jobs:
4444
CI: true
4545
- name: Send codecov.io stats
4646
if: matrix.node-version == '12.x'
47-
uses: codecov/codecov-action@v2
47+
uses: codecov/codecov-action@v3
4848

4949
publish:
5050
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta' || startsWith(github.ref, 'refs/heads/old')
5151
needs: [tests]
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555
- name: Use Node.js 12
56-
uses: actions/setup-node@v2
56+
uses: actions/setup-node@v3
5757
with:
5858
node-version: 12.x
5959
- name: Install node_modules

.github/workflows/website.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ jobs:
2121
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- name: Use Node.js 14
26-
uses: actions/setup-node@v1
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: 14.x
2929
- name: Install & Build
3030
run: bash ./ghPagesPre.sh
3131
- name: Deploy to Github Pages
32-
uses: JamesIves/github-pages-deploy-action@3.7.1
32+
uses: JamesIves/github-pages-deploy-action@v4.3.3
3333
with:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
BRANCH: gh-pages
36-
FOLDER: . # the root, because the provided script already moves files
34+
token: ${{ secrets.GITHUB_TOKEN }}
35+
branch: gh-pages
36+
folder: . # the root, because the provided script already moves files
37+
git-config-email: <> # disable gh-pages commits to have a email assigned to them
38+
git-config-name: 'actions-deploy' # set a custom name, so that the original author of the commit that triggered the website build is not associated with this commit, which was not made by them

docs/guides/known-issues.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: 'Known Issues'
55

66
## ArchLinux on Docker
77

8-
It is known that ArchLinux on Docker does not have an `/etc/os-release` or `/etc/lsb-release`, so detection will not work
8+
It is known that ArchLinux on Docker does not have an `/etc/os-release` or `/etc/lsb-release`, so detection will not work.
99

1010
Workaround:
1111

@@ -15,7 +15,7 @@ Workaround:
1515

1616
## No Build available for Alpine Linux
1717

18-
It is known that [AlpineLinux](./supported-systems.md#Alpine) does not have an official build (and no build like the ubuntu build works)
18+
It is known that [AlpineLinux](./supported-systems.md#Alpine) does not have an official build (and no build like the ubuntu build works).
1919

2020
Workaround:
2121

@@ -33,4 +33,4 @@ This can easily be resolved by installing it in your image:
3333

3434
```sh
3535
apt-get install libcurl4
36-
```
36+
```

docs/guides/supported-systems.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently Supported platforms:
1212
Officially Supported Architectures:
1313
<!--Platfrom taken from "MongoBinaryDownloadUrl.translateArch"-->
1414
- `x64` / `x86_64`
15-
- `ia32` / `i686` / `i386`
15+
- ~~`ia32` / `i686` / `i386`~~ (There are only binaries up to ~3.2 and [will be removed with the next MMS version](https://github.com/nodkz/mongodb-memory-server/issues/638))
1616

1717
:::note
1818
On systems with native translation, will work when overwriting the architecture with `MONGOMS_ARCH=x64`

0 commit comments

Comments
 (0)