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

Commit 0cf64bb

Browse files
authored
Merge pull request #42 from fullstack-devops/bugfix/update-deps
Update Dockerfile
2 parents af6b9fb + 8294ff1 commit 0cf64bb

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "docker" # See documentation for possible values
9-
directory: "/" # Location of package manifests
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
rebase-strategy: auto
6+
commit-message:
7+
prefix: "fix"
8+
include: scope
109
schedule:
1110
interval: "daily"
11+
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
rebase-strategy: auto
15+
commit-message:
16+
prefix: "fix"
17+
include: scope
18+
schedule:
19+
interval: "weekly"

images/base/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ENV GH_RUNNER_WORKDIR="/home/${USERNAME}"
1313
ENV GH_KANIKO_WORKDIR="/kaniko/workspace"
1414

1515
# https://github.com/actions/runner/releases
16-
ENV GH_RUNNER_VERSION=2.299.1
16+
ENV GH_RUNNER_VERSION=2.300.2
1717
ENV GH_RUNNER_LABELS=ubuntu-20.04
1818

1919
# https://github.com/fullstack-devops/awesome-ci/releases
20-
ENV AWESOME_CI_VERSION 0.13.0
20+
ENV AWESOME_CI_VERSION 1.1.1
2121
# https://github.com/samuong/alpaca/releases
2222
ENV ALPACA_VERSION 1.3.2
2323

@@ -42,8 +42,8 @@ RUN apt-get update \
4242

4343
# install awesoeme ci
4444
RUN export ARCH=$(/helper-scripts/translate-aarch.sh a-short) \
45-
&& curl -L -O https://github.com/fullstack-devops/awesome-ci/releases/download/${AWESOME_CI_VERSION}/awesome-ci_${AWESOME_CI_VERSION}_${ARCH} \
46-
&& mv awesome-ci_${AWESOME_CI_VERSION}_${ARCH} /usr/local/src/awesome-ci \
45+
&& curl -L -O https://github.com/fullstack-devops/awesome-ci/releases/download/${AWESOME_CI_VERSION}/awesome-ci_${AWESOME_CI_VERSION}_linux-${ARCH} \
46+
&& mv awesome-ci_${AWESOME_CI_VERSION}_linux-${ARCH} /usr/local/src/awesome-ci \
4747
&& chmod +x /usr/local/src/awesome-ci \
4848
&& ln -s /usr/local/src/awesome-ci /usr/local/bin/
4949

0 commit comments

Comments
 (0)