Skip to content

Commit b57c3eb

Browse files
author
github-actions
committed
Merge branch 'main' into cras
2 parents b3628c7 + e6b599f commit b57c3eb

22 files changed

+646
-452
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
parameters:
77
go-version:
88
type: string
9-
default: '1.22.8'
9+
default: '1.23.2'
1010

1111
executors:
1212
node:

.github/dependabot.yml

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,58 @@ updates:
88
- package-ecosystem: "gomod" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "daily"
11+
interval: "weekly"
12+
day: "friday"
13+
time: "07:00"
1214
target-branch: main
15+
groups:
16+
moby:
17+
applies-to: "version-updates"
18+
patterns:
19+
- "github.com/moby/*"
20+
- "github.com/docker/*"
21+
containerd:
22+
applies-to: "version-updates"
23+
patterns:
24+
- "github.com/containerd/*"
25+
opencontainers:
26+
applies-to: "version-updates"
27+
patterns:
28+
- "github.com/opencontainers/*"
29+
minor:
30+
applies-to: "version-updates"
31+
patterns:
32+
- "*"
33+
update-types:
34+
- "minor"
35+
- "patch"
36+
1337
- package-ecosystem: "gomod" # See documentation for possible values
1438
directory: "/" # Location of package manifests
1539
schedule:
16-
interval: "daily"
40+
interval: "weekly"
41+
day: "friday"
42+
time: "08:00"
1743
target-branch: release-4.2
44+
groups:
45+
moby:
46+
applies-to: "version-updates"
47+
patterns:
48+
- "github.com/moby/*"
49+
- "github.com/docker/*"
50+
containerd:
51+
applies-to: "version-updates"
52+
patterns:
53+
- "github.com/containerd/*"
54+
opencontainers:
55+
applies-to: "version-updates"
56+
patterns:
57+
- "github.com/opencontainers/*"
58+
minor:
59+
applies-to: "version-updates"
60+
patterns:
61+
- "*"
62+
update-types:
63+
- "minor"
64+
- "patch"
1865

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# SingularityCE Changelog
22

3+
## Changes Since Last Release
4+
5+
### Bug Fixes
6+
7+
- Fix regression from 4.1.5 that overwrites source image runscript, environment
8+
etc. in build from local image.
9+
310
## 4.2.1 \[2024-09-13\]
411

512
### Bug Fixes

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
143143
`/usr/local/go` before reinstalling it._
144144

145145
```sh
146-
export VERSION=1.22.8 OS=linux ARCH=amd64 # change this as you need
146+
export VERSION=1.23.2 OS=linux ARCH=amd64 # change this as you need
147147

148148
wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz \
149149
https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz

0 commit comments

Comments
 (0)