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

deps: bump the production-dependencies group with 3 updates #102

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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
language: [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Conditionally run actions based on files modified by PR, feature branch or pushed commits
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
id: changes
with:
filters: |
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
steps:
- name: Check if compile-and-test job failed to complete, if so fail
if: ${{ needs.compile-and-test.result == 'failure' }}
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('Test run job failed')
Expand Down Expand Up @@ -161,11 +161,11 @@ jobs:
language: [ 'csharp', 'java' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
id: changes
with:
filters: |
Expand Down Expand Up @@ -196,11 +196,11 @@ jobs:
language: [ 'csharp', 'java' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
id: changes
with:
filters: |
Expand All @@ -226,9 +226,9 @@ jobs:
needs: compile-and-test

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36
id: changes
with:
filters: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hotspots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
packages: write
steps:
- name: Checkout github/codeql
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: codeql
repository: github/codeql
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0

- name: Checkout github/codeql-community-packs
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: codeql-community-packs
repository: githubsecuritylab/codeql-community-packs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
language: ["cpp", "csharp", "go", "java", "javascript", "python", "ruby"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Initialize CodeQL
run: |
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
language: ["cpp", "csharp", "go", "java", "javascript", "python", "ruby"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Initialize CodeQL
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
language: ["csharp", "java"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Initialize CodeQL
run: |
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
language: ["csharp", "java"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Initialize CodeQL
run: |
Expand Down
Loading