Skip to content

Commit aaffb8f

Browse files
committed
lock versions
1 parent ac1e7d9 commit aaffb8f

File tree

5 files changed

+25
-21
lines changed

5 files changed

+25
-21
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#syntax=docker/dockerfile:1.2
2-
FROM node:20 as build
2+
FROM node@sha256:0c0734eb7051babbb3e95cd74e684f940552b31472152edf0bb23e54ab44a0d7 as build
33
WORKDIR /lambdas
44
RUN apt-get update \
55
&& apt-get install -y zip \

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
ARG VARIANT="20-bullseye"
2-
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
1+
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node@sha256:acdce1045a2ddce4c66846d5cd09adf746d157fce9233124e4925b647f192b2e

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,23 @@ updates:
5151
commit-message:
5252
prefix: "fix(lambda)"
5353
prefix-development: "chore(lambda)"
54+
55+
- package-ecosystem: "docker"
56+
directory: "/.ci/Dockerfile"
57+
schedule:
58+
interval: "weekly"
59+
labels:
60+
- "dependencies"
61+
- "docker"
62+
commit-message:
63+
prefix: "chore(docker)"
64+
65+
- package-ecosystem: "docker"
66+
directory: "/.devcontainer/Dockerfile"
67+
schedule:
68+
interval: "weekly"
69+
labels:
70+
- "dependencies"
71+
- "docker"
72+
commit-message:
73+
prefix: "chore(devcontainer)"

.github/workflows/scorecard.yml renamed to .github/workflows/ossf-scorecard.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,22 @@
1-
# This workflow uses actions that are not certified by GitHub. They are provided
2-
# by a third-party and are governed by separate terms of service, privacy
3-
# policy, and support documentation.
4-
5-
name: Scorecard supply-chain security
1+
name: OSSF Scorecard supply-chain security
62
on:
7-
# For Branch-Protection check. Only the default branch is supported. See
8-
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
93
branch_protection_rule:
10-
# To guarantee Maintained check is occasionally updated. See
11-
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
124
schedule:
135
- cron: '44 19 * * 2'
146
workflow_dispatch:
157
push:
168
branches: [ "main" ]
179

18-
# Declare default permissions as read only.
1910
permissions: read-all
2011

2112
jobs:
2213
analysis:
2314
name: Scorecard analysis
2415
runs-on: ubuntu-latest
25-
# `publish_results: true` only works when run from the default branch. conditional can be removed if disabled.
2616
if: github.event.repository.default_branch == github.ref_name || github.event_name == 'pull_request'
2717
permissions:
28-
# Needed to upload the results to code-scanning dashboard.
2918
security-events: write
30-
# Needed to publish results and get a badge (see publish_results below).
3119
id-token: write
32-
# Uncomment the permissions below if installing in a private repository.
33-
# contents: read
34-
# actions: read
3520

3621
steps:
3722
- name: "Checkout code"
@@ -58,6 +43,6 @@ jobs:
5843
# Upload the results to GitHub's code scanning dashboard (optional).
5944
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
6045
- name: "Upload to code-scanning"
61-
uses: github/codeql-action/upload-sarif@v3
46+
uses: github/codeql-action/upload-sarif@fca7ace96b7d713c7035871441bd52efbe39e27e
6247
with:
6348
sarif_file: results.sarif

lambdas/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v22

0 commit comments

Comments
 (0)