Merge pull request #371 from Coffey-Labs/ci/pin-actions-to-shas
Pin every action to a commit SHA
This commit is contained in:
@@ -15,8 +15,19 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
# Every `uses:` in this repository is pinned to a full commit SHA, with
|
||||||
- uses: actions/setup-node@v7
|
# the release it belongs to in the trailing comment, and the repository
|
||||||
|
# requires it -- an unpinned ref fails the run rather than quietly
|
||||||
|
# resolving. A tag is a mutable pointer: `@v7` is whatever the publisher
|
||||||
|
# last moved it to, so trusting one is trusting every future version of
|
||||||
|
# that action, including the one pushed by whoever compromises the
|
||||||
|
# account. Read the comment for the version; the SHA is what runs.
|
||||||
|
#
|
||||||
|
# Dependabot updates both halves together on its weekly github-actions
|
||||||
|
# run, so this costs nothing to keep current -- do not "simplify" a pin
|
||||||
|
# back to a tag.
|
||||||
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
|
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
||||||
with:
|
with:
|
||||||
node-version: 26
|
node-version: 26
|
||||||
cache: npm
|
cache: npm
|
||||||
|
|||||||
@@ -39,11 +39,12 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
# Pinned to a commit rather than a moving major tag. This action is
|
# The only third-party action here that is not published by GitHub or
|
||||||
# handed `packages: write` and its whole job is deletion, so a tag
|
# Docker, and the one with the most to lose: it is handed
|
||||||
# repointed at something else -- by a compromise or a mistake upstream --
|
# `packages: write` and its whole job is deletion, so a ref repointed at
|
||||||
# is a bad day. v1.2.2.
|
# something else -- by a compromise or a mistake upstream -- is a bad
|
||||||
- uses: dataaxiom/ghcr-cleanup-action@d52806a0dc70b430571a37da1fde39733ffd640f
|
# day. It was pinned to a commit long before the rest of them were.
|
||||||
|
- uses: dataaxiom/ghcr-cleanup-action@d52806a0dc70b430571a37da1fde39733ffd640f # v1.2.2
|
||||||
with:
|
with:
|
||||||
owner: Coffey-Labs
|
owner: Coffey-Labs
|
||||||
package: ihasmail
|
package: ihasmail
|
||||||
|
|||||||
@@ -76,11 +76,11 @@ jobs:
|
|||||||
version: ${{ steps.v.outputs.version }}
|
version: ${{ steps.v.outputs.version }}
|
||||||
docker_tag: ${{ steps.v.outputs.docker_tag }}
|
docker_tag: ${{ steps.v.outputs.docker_tag }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.ref || github.ref }}
|
ref: ${{ inputs.ref || github.ref }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v7
|
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
||||||
with:
|
with:
|
||||||
node-version: 26
|
node-version: 26
|
||||||
- id: v
|
- id: v
|
||||||
@@ -108,18 +108,18 @@ jobs:
|
|||||||
- platform: linux/arm64
|
- platform: linux/arm64
|
||||||
runner: ubuntu-24.04-arm
|
runner: ubuntu-24.04-arm
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.ref || github.ref }}
|
ref: ${{ inputs.ref || github.ref }}
|
||||||
- uses: docker/setup-buildx-action@v4
|
- uses: docker/setup-buildx-action@594f3bf4285d9ea8dc53c9a0c9c4092420091003 # v4.4.0
|
||||||
- uses: docker/login-action@v4
|
- uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Build and push by digest
|
- name: Build and push by digest
|
||||||
id: push
|
id: push
|
||||||
uses: docker/build-push-action@v7
|
uses: docker/build-push-action@c3c9e263c25d99ce0380d002d59b67737d91b0dc # v7.4.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
@@ -140,7 +140,7 @@ jobs:
|
|||||||
# `image@sha256:sha256:...` when the reference is rebuilt.
|
# `image@sha256:sha256:...` when the reference is rebuilt.
|
||||||
digest="${{ steps.push.outputs.digest }}"
|
digest="${{ steps.push.outputs.digest }}"
|
||||||
touch "/tmp/digests/${digest#sha256:}"
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
- uses: actions/upload-artifact@v7
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
||||||
with:
|
with:
|
||||||
# One artifact per platform; the merge job globs them back together.
|
# One artifact per platform; the merge job globs them back together.
|
||||||
name: digest-${{ strategy.job-index }}
|
name: digest-${{ strategy.job-index }}
|
||||||
@@ -157,13 +157,13 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v8
|
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
||||||
with:
|
with:
|
||||||
path: /tmp/digests
|
path: /tmp/digests
|
||||||
pattern: digest-*
|
pattern: digest-*
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
- uses: docker/setup-buildx-action@v4
|
- uses: docker/setup-buildx-action@594f3bf4285d9ea8dc53c9a0c9c4092420091003 # v4.4.0
|
||||||
- uses: docker/login-action@v4
|
- uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
|
|||||||
@@ -54,11 +54,11 @@ jobs:
|
|||||||
previous: ${{ steps.decide.outputs.previous }}
|
previous: ${{ steps.decide.outputs.previous }}
|
||||||
count: ${{ steps.decide.outputs.count }}
|
count: ${{ steps.decide.outputs.count }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: main
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v7
|
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
||||||
with:
|
with:
|
||||||
node-version: 26
|
node-version: 26
|
||||||
- id: decide
|
- id: decide
|
||||||
@@ -130,7 +130,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: main
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|||||||
Reference in New Issue
Block a user