Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check Out Repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0

- name: Set up QEMU for Docker Buildx
uses: docker/setup-qemu-action@8b122486cedac8393e77aa9734c3528886e4a1a8 # tag=v2.0.0
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6 # tag=v2.0.0
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0

- name: Set up Node.js for extracting recipe from Dockerfile
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3.4.1
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1

- name: Set WORKDIR
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
echo "::set-output name=platforms::${PLATFORMS//$', '/'%0A'}"
echo "::set-output name=variant::$VARIANT"
- name: Generate Docker image metadata
uses: docker/metadata-action@69f6fc9d46f2f8bf0d5491e4aabe0bb8c6a4678a # tag=v4.0.1
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
id: meta
with:
images: |
Expand All @@ -69,15 +69,15 @@ jobs:

- name: Login to GitHub Container Registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # tag=v2.0.0
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push the Docker image from the specified Dockerfile
id: docker_build
uses: docker/build-push-action@c84f38281176d4c9cdb1626ffafcd6b3911b5d94 # tag=v3.1.1
uses: docker/build-push-action@1104d471370f9806843c095c1db02b5a90c5f8b6 # v3.3.1
with:
context: ${{ env.ROOTDIR }}
file: ${{ env.WORKDIR }}/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.61.0/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: alpine-ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.61.0-alpine
FROM --platform=$BUILDPLATFORM rust:1.92.0-alpine

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.61.0/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.61.0-slim
FROM --platform=$BUILDPLATFORM rust:1.92.0-slim

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.62.0/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: alpine-ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.62.0-alpine
FROM --platform=$BUILDPLATFORM rust:1.92.0-alpine

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.62.0/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.62.0-slim
FROM --platform=$BUILDPLATFORM rust:1.92.0-slim

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.63.0/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: alpine-ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.63.0-alpine
FROM --platform=$BUILDPLATFORM rust:1.92.0-alpine

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
2 changes: 1 addition & 1 deletion rust/pterodactyl/1.63.0/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TAGS: stable
# VARIANT: ptero
# PLATFORMS: linux/amd64, linux/arm64/v8
FROM --platform=$BUILDPLATFORM rust:1.63.0-slim
FROM --platform=$BUILDPLATFORM rust:1.92.0-slim

LABEL author="Frutbits Indonesia" maintainer="support@frutbits.org"

Expand Down
Loading