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/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,38 +77,38 @@
- # Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
name: Set up QEMU
uses: docker/setup-qemu-action@v3.7.0
uses: docker/setup-qemu-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/setup-qemu-action' with ref 'v4.0.0', not a pinned commit hash
- # https://github.com/docker/setup-buildx-action/issues/57#issuecomment-1059657292
# https://github.com/docker/buildx/issues/136#issuecomment-550205439
# docker buildx create --driver-opt env.http_proxy=$http_proxy --driver-opt env.https_proxy=$https_proxy --driver-opt '"env.no_proxy='$no_proxy'"'
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/setup-buildx-action' with ref 'v4.0.0', not a pinned commit hash
with:
buildkitd-config: .github/buildkitd.toml
driver-opts: |
env.http_proxy=${{ env.http_proxy }}
env.https_proxy=${{ env.http_proxy }}
"env.no_proxy='${{ env.no_proxy}}'"
- name: Login to DockerHub
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to Quay.io
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.10.0
uses: docker/metadata-action@v6.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step: meta
uses 'docker/metadata-action' with ref 'v6.0.0', not a pinned commit hash
with:
images: |
name=snowdreamtech/base,enable=true
Expand Down Expand Up @@ -146,7 +146,7 @@
env:
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
- name: Build and push
uses: docker/build-push-action@v6.19.2
uses: docker/build-push-action@v7.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Alpine)' step
Uses Step
uses 'docker/build-push-action' with ref 'v7.0.0', not a pinned commit hash
with:
context: alpine
build-args: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,38 +77,38 @@
- # Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
name: Set up QEMU
uses: docker/setup-qemu-action@v3.7.0
uses: docker/setup-qemu-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/setup-qemu-action' with ref 'v4.0.0', not a pinned commit hash
- # https://github.com/docker/setup-buildx-action/issues/57#issuecomment-1059657292
# https://github.com/docker/buildx/issues/136#issuecomment-550205439
# docker buildx create --driver-opt env.http_proxy=$http_proxy --driver-opt env.https_proxy=$https_proxy --driver-opt '"env.no_proxy='$no_proxy'"'
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/setup-buildx-action' with ref 'v4.0.0', not a pinned commit hash
with:
buildkitd-config: .github/buildkitd.toml
driver-opts: |
env.http_proxy=${{ env.http_proxy }}
env.https_proxy=${{ env.http_proxy }}
"env.no_proxy='${{ env.no_proxy}}'"
- name: Login to DockerHub
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to Quay.io
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.10.0
uses: docker/metadata-action@v6.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step: meta
uses 'docker/metadata-action' with ref 'v6.0.0', not a pinned commit hash
with:
images: |
name=snowdreamtech/base,enable=true
Expand Down Expand Up @@ -138,7 +138,7 @@
env:
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
- name: Build and push
uses: docker/build-push-action@v6.19.2
uses: docker/build-push-action@v7.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Debian)' step
Uses Step
uses 'docker/build-push-action' with ref 'v7.0.0', not a pinned commit hash
with:
context: debian
build-args: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/rocky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,38 +77,38 @@
- # Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
name: Set up QEMU
uses: docker/setup-qemu-action@v3.7.0
uses: docker/setup-qemu-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/setup-qemu-action' with ref 'v4.0.0', not a pinned commit hash
- # https://github.com/docker/setup-buildx-action/issues/57#issuecomment-1059657292
# https://github.com/docker/buildx/issues/136#issuecomment-550205439
# docker buildx create --driver-opt env.http_proxy=$http_proxy --driver-opt env.https_proxy=$https_proxy --driver-opt '"env.no_proxy='$no_proxy'"'
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/setup-buildx-action' with ref 'v4.0.0', not a pinned commit hash
with:
buildkitd-config: .github/buildkitd.toml
driver-opts: |
env.http_proxy=${{ env.http_proxy }}
env.https_proxy=${{ env.http_proxy }}
"env.no_proxy='${{ env.no_proxy}}'"
- name: Login to DockerHub
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Login to Quay.io
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/login-action' with ref 'v4.0.0', not a pinned commit hash
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.10.0
uses: docker/metadata-action@v6.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step: meta
uses 'docker/metadata-action' with ref 'v6.0.0', not a pinned commit hash
with:
images: |
name=snowdreamtech/base,enable=true
Expand Down Expand Up @@ -138,7 +138,7 @@
env:
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
- name: Build and push
uses: docker/build-push-action@v6.19.2
uses: docker/build-push-action@v7.0.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'GitHub Actions Continuous Delivery (Rocky)' step
Uses Step
uses 'docker/build-push-action' with ref 'v7.0.0', not a pinned commit hash
with:
context: rocky
build-args: |
Expand Down
Loading