Skip to content

Commit fb4555f

Browse files
Merge pull request #3 from Graysonbarton/snyk-fix-267caf5d8e5dc61654620d831989ff7f
[Snyk] Security upgrade debian from 9.5-slim to bookworm-20240423-slim
2 parents c3b38d4 + 0ab2b35 commit fb4555f

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/npm-gulp.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: NodeJS with Gulp
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [14.x, 16.x, 18.x]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
25+
- name: Build
26+
run: |
27+
npm install
28+
gulp

content/actions/creating-actions/dockerfile-support-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ENTRYPOINT ["sh", "-c", "echo $GITHUB_SHA"]
6565

6666
```dockerfile
6767
# Container image that runs your code
68-
FROM debian:9.5-slim
68+
FROM debian:bookworm-20240423-slim
6969

7070
# Copies your code file from your action repository to the filesystem path `/` of the container
7171
COPY entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)