Skip to content

Commit ff0c196

Browse files
minor improvements
1 parent 3390aab commit ff0c196

11 files changed

Lines changed: 284867 additions & 17173 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v3
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v3
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v3

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: "PR Checks"
22
on: push
33

4+
permissions:
5+
contents: read
6+
47
jobs:
58
unit:
69
runs-on: ubuntu-latest

.gitignore

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
node_modules
22

3-
# Ignore built ts files
4-
__tests__/runner/*
5-
lib/**/*
6-
.nyc_output
7-
coverage
3+
# OS / editor
4+
.DS_Store
5+
6+
# Local env
7+
.env
8+
.env.local
9+
10+
# Logs
11+
*.log

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Action Test
1919
steps:
2020
# ...
21-
- uses: testingbot/testingbot-tunnel-action@v1.1.0
21+
- uses: testingbot/testingbot-tunnel-action@v2
2222
with:
2323
key: ${{ secrets.TB_KEY }}
2424
secret: ${{ secrets.TB_SECRET }}
@@ -96,7 +96,11 @@ Default is true.
9696

9797
### `retryTimeout`:
9898

99-
How long, in seconds, should the Action wait if the tunnel fails to start.
99+
How long, in minutes, should the Action wait if the tunnel fails to start. Default: 10.
100+
101+
### `tbVersion`:
102+
103+
Version tag of the `testingbot/tunnel` Docker image to run. Default: `latest`.
100104

101105
## Feature requests and bug reports
102106
Please file feature requests and bug reports as [github issues](https://github.com/testingbot/testingbot-tunnel-action/issues).

0 commit comments

Comments
 (0)