Skip to content
This repository was archived by the owner on Jan 12, 2025. It is now read-only.

Commit 77e65d6

Browse files
fix: update gh-release dependents to 1-0-18 version (#456)
1 parent 043fad4 commit 77e65d6

File tree

228 files changed

+463
-341
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+463
-341
lines changed

src/act/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "act",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"name": "act (via Github Releases)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/act",
66
"description": "Act is an open source project that allows you to run your github flow locally.",

src/act/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ source ./library_scripts.sh
99
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
1010
# and if missing - will download a temporary copy that automatically get deleted at the end
1111
# of the script
12-
ensure_nanolayer nanolayer_location "v0.4.39"
12+
ensure_nanolayer nanolayer_location "v0.4.45"
1313

1414

1515
$nanolayer_location \
1616
install \
1717
devcontainer-feature \
18-
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.17" \
18+
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.18" \
1919
--option repo='nektos/act' --option binaryNames='act' --option version="$VERSION"
20+
2021

2122

2223
echo 'Done!'

src/actionlint/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "actionlint",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"name": "actionlint (via Github Releases)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/actionlint",
66
"description": "Static checker for GitHub Actions workflow files.",

src/actionlint/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ source ./library_scripts.sh
99
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
1010
# and if missing - will download a temporary copy that automatically get deleted at the end
1111
# of the script
12-
ensure_nanolayer nanolayer_location "v0.4.39"
12+
ensure_nanolayer nanolayer_location "v0.4.45"
1313

1414

1515
$nanolayer_location \
1616
install \
1717
devcontainer-feature \
18-
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.17" \
18+
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.18" \
1919
--option repo='rhysd/actionlint' --option binaryNames='actionlint' --option version="$VERSION"
20+
2021

2122

2223
echo 'Done!'

src/actions-runner-noexternals/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "actions-runner-noexternals",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"name": "GitHub Actions Runner (No Externals)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/actions-runner-noexternals",
66
"description": "The runner is the application that runs a job from a GitHub Actions workflow. It is used by GitHub Actions in the hosted virtual environments, or you can self-host the runner in your own environment.",

src/actions-runner-noexternals/install.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@ source ./library_scripts.sh
99
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
1010
# and if missing - will download a temporary copy that automatically get deleted at the end
1111
# of the script
12-
ensure_nanolayer nanolayer_location "v0.4.39"
12+
ensure_nanolayer nanolayer_location "v0.4.45"
1313

1414

1515
$nanolayer_location \
1616
install \
1717
devcontainer-feature \
1818
"ghcr.io/devcontainers/features/dotnet:1.1.3" \
1919
--option dotnetVersion="$DOTNETVERSION" --option runtimeOnly='true'
20+
2021

2122

2223
$nanolayer_location \
2324
install \
2425
devcontainer-feature \
25-
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.17" \
26+
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.18" \
2627
--option repo='actions/runner' --option binaryNames='run.sh' --option binLocation='$_REMOTE_USER_HOME/.local/bin' --option version="$VERSION" --option libLocation='$_REMOTE_USER_HOME' --option libName='actions-runner' --option assetRegex='^(?!.*(noruntime))(?!.*(trimmedpackages))(.*-noexternals.*)'
28+
2729

2830

2931
$nanolayer_location \
@@ -32,6 +34,7 @@ $nanolayer_location \
3234
"ghcr.io/devcontainers-contrib/features/bash-command:1.0.0" \
3335
--option command='rm /home/vscode/.local/bin/run.sh && \
3436
chown -hR ${_REMOTE_USER}:${_REMOTE_USER} $_REMOTE_USER_HOME/actions-runner'
37+
3538

3639

3740
echo "GitHub Actions Runner now installed at $_REMOTE_USER_HOME/actions-runner"

src/actions-runner-noruntime-noexternals/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "actions-runner-noruntime-noexternals",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"name": "GitHub Actions Runner (No Runtime, No Externals)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/actions-runner-noruntime-noexternals",
66
"description": "The runner is the application that runs a job from a GitHub Actions workflow. It is used by GitHub Actions in the hosted virtual environments, or you can self-host the runner in your own environment.",

src/actions-runner-noruntime-noexternals/install.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@ source ./library_scripts.sh
99
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
1010
# and if missing - will download a temporary copy that automatically get deleted at the end
1111
# of the script
12-
ensure_nanolayer nanolayer_location "v0.4.39"
12+
ensure_nanolayer nanolayer_location "v0.4.45"
1313

1414

1515
$nanolayer_location \
1616
install \
1717
devcontainer-feature \
1818
"ghcr.io/devcontainers/features/dotnet:1.1.3" \
1919
--option dotnetVersion="$DOTNETVERSION" --option runtimeOnly='true'
20+
2021

2122

2223
$nanolayer_location \
2324
install \
2425
devcontainer-feature \
25-
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.17" \
26+
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.18" \
2627
--option repo='actions/runner' --option binaryNames='run.sh' --option binLocation='$_REMOTE_USER_HOME/.local/bin' --option version="$VERSION" --option libLocation='$_REMOTE_USER_HOME' --option libName='actions-runner' --option assetRegex='^(?!.*(trimmedpackages))(.*-noruntime.*)(.*-noexternals.*)'
28+
2729

2830

2931
$nanolayer_location \
@@ -32,6 +34,7 @@ $nanolayer_location \
3234
"ghcr.io/devcontainers-contrib/features/bash-command:1.0.0" \
3335
--option command='rm /home/vscode/.local/bin/run.sh && \
3436
chown -hR ${_REMOTE_USER}:${_REMOTE_USER} $_REMOTE_USER_HOME/actions-runner'
37+
3538

3639

3740
echo "GitHub Actions Runner now installed at $_REMOTE_USER_HOME/actions-runner"

src/actions-runner-noruntime/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "actions-runner-noruntime",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"name": "GitHub Actions Runner (No Runtime)",
55
"documentationURL": "http://github.com/devcontainers-contrib/features/tree/main/src/actions-runner-noruntime",
66
"description": "The runner is the application that runs a job from a GitHub Actions workflow. It is used by GitHub Actions in the hosted virtual environments, or you can self-host the runner in your own environment.",

src/actions-runner-noruntime/install.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@ source ./library_scripts.sh
99
# `ensure_nanolayer` is a bash function that will find any existing nanolayer installations,
1010
# and if missing - will download a temporary copy that automatically get deleted at the end
1111
# of the script
12-
ensure_nanolayer nanolayer_location "v0.4.39"
12+
ensure_nanolayer nanolayer_location "v0.4.45"
1313

1414

1515
$nanolayer_location \
1616
install \
1717
devcontainer-feature \
1818
"ghcr.io/devcontainers/features/dotnet:1.1.3" \
1919
--option dotnetVersion="$DOTNETVERSION" --option runtimeOnly='true'
20+
2021

2122

2223
$nanolayer_location \
2324
install \
2425
devcontainer-feature \
25-
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.17" \
26+
"ghcr.io/devcontainers-contrib/features/gh-release:1.0.18" \
2627
--option repo='actions/runner' --option binaryNames='run.sh' --option binLocation='$_REMOTE_USER_HOME/.local/bin' --option version="$VERSION" --option libLocation='$_REMOTE_USER_HOME' --option libName='actions-runner' --option assetRegex='^(?!.*(noexternals))(?!.*(trimmedpackages))(.*-noruntime.*)'
28+
2729

2830

2931
$nanolayer_location \
@@ -32,6 +34,7 @@ $nanolayer_location \
3234
"ghcr.io/devcontainers-contrib/features/bash-command:1.0.0" \
3335
--option command='rm /home/vscode/.local/bin/run.sh && \
3436
chown -hR ${_REMOTE_USER}:${_REMOTE_USER} $_REMOTE_USER_HOME/actions-runner'
37+
3538

3639

3740
echo "GitHub Actions Runner now installed at $_REMOTE_USER_HOME/actions-runner"

0 commit comments

Comments
 (0)