Skip to content

Commit

Permalink
Merge branch 'main' into cras
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 2, 2024
2 parents b3628c7 + e6b599f commit b57c3eb
Show file tree
Hide file tree
Showing 22 changed files with 646 additions and 452 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
parameters:
go-version:
type: string
default: '1.22.8'
default: '1.23.2'

executors:
node:
Expand Down
51 changes: 49 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,58 @@ updates:
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "07:00"
target-branch: main
groups:
moby:
applies-to: "version-updates"
patterns:
- "github.com/moby/*"
- "github.com/docker/*"
containerd:
applies-to: "version-updates"
patterns:
- "github.com/containerd/*"
opencontainers:
applies-to: "version-updates"
patterns:
- "github.com/opencontainers/*"
minor:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "08:00"
target-branch: release-4.2
groups:
moby:
applies-to: "version-updates"
patterns:
- "github.com/moby/*"
- "github.com/docker/*"
containerd:
applies-to: "version-updates"
patterns:
- "github.com/containerd/*"
opencontainers:
applies-to: "version-updates"
patterns:
- "github.com/opencontainers/*"
minor:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# SingularityCE Changelog

## Changes Since Last Release

### Bug Fixes

- Fix regression from 4.1.5 that overwrites source image runscript, environment
etc. in build from local image.

## 4.2.1 \[2024-09-13\]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
`/usr/local/go` before reinstalling it._

```sh
export VERSION=1.22.8 OS=linux ARCH=amd64 # change this as you need
export VERSION=1.23.2 OS=linux ARCH=amd64 # change this as you need

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

0 comments on commit b57c3eb

Please sign in to comment.