Skip to content

Commit f6b9040

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [anchore/scan-action](https://github.com/anchore/scan-action), [actions/setup-node](https://github.com/actions/setup-node) and [actions/github-script](https://github.com/actions/github-script). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `anchore/scan-action` from 3 to 6 - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/RELEASE.md) - [Commits](anchore/scan-action@v3...v6) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v4) Updates `actions/github-script` from 6 to 7 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: anchore/scan-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent badb53f commit f6b9040

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/critical_vulnerability_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- run: tar -zxf ../build/logstash-*.tar.gz
1818
working-directory: ./scan
1919
- name: scan image
20-
uses: anchore/scan-action@v3
20+
uses: anchore/scan-action@v6
2121
with:
2222
path: "./scan"
2323
fail-build: true

.github/workflows/gen_release_notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
main:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- name: Set up Ruby

.github/workflows/lint_docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Set up Node.js
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
1919
with:
2020
node-version: 16.13.2
2121
cache: npm
@@ -38,7 +38,7 @@ jobs:
3838
echo "::set-output name=LINT_RESULT::$LINT"
3939
4040
- name: Add PR comment
41-
uses: actions/github-script@v6
41+
uses: actions/github-script@v7
4242
with:
4343
github-token: ${{ secrets.GITHUB_TOKEN }}
4444
script: |
@@ -58,7 +58,7 @@ jobs:
5858
}
5959
6060
- name: Throw error if linter fails
61-
uses: actions/github-script@v6
61+
uses: actions/github-script@v7
6262
with:
6363
script: |
6464
const report = `${{ steps.run_docs_lint.outputs.LINT_RESULT }}`

0 commit comments

Comments
 (0)