Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite2c060d

Browse files
committed
chore: update various dependencies
This will help us pass the security scanners.
1 parentb4095ce commite2c060d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

‎.github/workflows/security.yaml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
workflow_dispatch:
1010

1111
schedule:
12-
# Run every6 hours Monday-Friday!
13-
-cron:"0 0,6,12,18 * * 1-5"
12+
# Run every24 hours Monday-Friday.
13+
-cron:"0 0 * * 1-5"
1414

1515
# Cancel in-progress runs for pull requests when developers push
1616
# additional changes

‎dogfood/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM ubuntu:jammy AS go
88

99
RUN apt-get update && apt-get install --yes curl gcc
1010
# Install Go manually, so that we can control the version
11-
ARG GO_VERSION=1.20
11+
ARG GO_VERSION=1.20.3
1212
RUN mkdir --parents /usr/local/go
1313

1414
# Boring Go is needed to build FIPS-compliant binaries.

‎provisioner/terraform/install.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ var (
1919
// TerraformVersion is the version of Terraform used internally
2020
// when Terraform is not available on the system.
2121
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
22-
TerraformVersion=version.Must(version.NewVersion("1.3.4"))
22+
TerraformVersion=version.Must(version.NewVersion("1.4.6"))
2323

2424
minTerraformVersion=version.Must(version.NewVersion("1.1.0"))
25-
maxTerraformVersion=version.Must(version.NewVersion("1.3.9"))
25+
maxTerraformVersion=version.Must(version.NewVersion("1.4.9"))
2626

2727
terraformMinorVersionMismatch=xerrors.New("Terraform binary minor version mismatch.")
2828
)

‎scripts/Dockerfile.base‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is the base image used for Coder images. It's a multi-arch image that is
22
# built in depot.dev for all supported architectures. Since it's built on real
33
# hardware and not cross-compiled, it can have "RUN" commands.
4-
FROM alpine:latest
4+
FROM alpine:3.18
55

66
# We use a single RUN command to reduce the number of layers in the image.
77
# NOTE: Keep the Terraform version in sync with minTerraformVersion and
@@ -12,7 +12,7 @@ RUN apk add --no-cache \
1212
bash \
1313
git \
1414
openssh-client \
15-
terraform=1.3.4-r4 && \
15+
terraform=1.4.6-r1 && \
1616
addgroup \
1717
-g 1000 \
1818
coder && \

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp