Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update CI references #191

Merged
merged 1 commit into from
Dec 12, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pull_request:
push:
branches:
- master
- develop

jobs:
# Running pre-commit in CI. See semgrep/.pre-commit-config.yaml for
Expand All @@ -15,11 +15,11 @@
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Check failure on line 18 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/lint.yaml#L18

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/lint.yaml:18:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
persist-credentials: false
# pre-commit is a Python script, this speedup things from Xmin to Ymin?
- uses: actions/setup-python@v4

Check failure on line 22 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/lint.yaml#L22

the runner of "actions/setup-python@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/lint.yaml:22:15: the runner of "actions/setup-python@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
python-version: "3.11"
# note that in a CI context pre-commit runs the hooks with the '--all' flag, so
Expand All @@ -30,7 +30,7 @@
github-actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Check failure on line 33 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/lint.yaml#L33

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/lint.yaml:33:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
- uses: reviewdog/action-actionlint@v1
with:
fail_on_error: true
2 changes: 1 addition & 1 deletion .github/workflows/semgrep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pull_request: {}
push:
branches:
- master
- develop
paths:
- .github/workflows/semgrep.yml
schedule:
Expand All @@ -20,5 +20,5 @@
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3

Check failure on line 23 in .github/workflows/semgrep.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/semgrep.yaml#L23

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/semgrep.yaml:23:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
- run: semgrep ci
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- "**.md"
push:
branches:
- master
- develop
paths-ignore:
- "**.md"
permissions:
Expand All @@ -21,8 +21,8 @@
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

Check failure on line 24 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L24

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:24:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
- uses: actions/setup-python@v4

Check failure on line 25 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L25

the runner of "actions/setup-python@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:25:15: the runner of "actions/setup-python@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
python-version: "3.10"
- name: Install Semgrep
Expand Down Expand Up @@ -63,7 +63,7 @@
run: npm run test-js
- name: upload semgrep results for windows
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3

Check failure on line 66 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L66

the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:66:15: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: semgrep-results
path: ./*_results.json
Expand All @@ -71,7 +71,7 @@
needs: vsce-test
runs-on: windows-latest
steps:
- uses: actions/checkout@v3

Check failure on line 74 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L74

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:74:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
- name: Setup
uses: actions/[email protected]
with:
Expand All @@ -87,7 +87,7 @@
- name: pretest
run: npm run pretest
- name: download semgrep results from linux
uses: actions/download-artifact@v3

Check failure on line 90 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L90

the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:90:15: the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: semgrep-results
path: ./
Expand All @@ -97,7 +97,7 @@
vsce-prepublish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Check failure on line 100 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L100

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/tests.yml:100:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
- uses: actions/[email protected]
with:
node-version: lts/*
Expand Down
Loading