Skip to content

Commit

Permalink
Consistently pin all CI dependencies to commit hashes (#196)
Browse files Browse the repository at this point in the history
Trying to fix Dependabot failing with an "unknown error" on `pdm-project/setup-pdm`

Signed-off-by: GitHub <[email protected]>
  • Loading branch information
shenanigansd committed Feb 18, 2024
1 parent 1a2fa0e commit 4f15192
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Docker Build and Push"
name: "Container Build and Push"

on:
push:
Expand All @@ -17,4 +17,4 @@ permissions:

jobs:
build-push:
uses: darbiadev/.github/.github/workflows/docker-build-push.yaml@main
uses: darbiadev/.github/.github/workflows/docker-build-push.yaml@ea97d99e1520c46080c4c9032a69552e491474ac # v13.0.0
6 changes: 3 additions & 3 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
lint_test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Checkout repository"
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: "Setup PDM"
uses: pdm-project/setup-pdm@v3
uses: pdm-project/setup-pdm@c050bdcb2405837648035b6678c75609d53a749f # v4
with:
python-version: "3.11"
cache: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: "Checkout repository"
uses: actions/checkout@v4 # v3.5.3
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: "Setup PDM"
uses: pdm-project/setup-pdm@ddc33ca746b5716353581f988b29464200212702 # v3.3
uses: pdm-project/setup-pdm@c050bdcb2405837648035b6678c75609d53a749f # v4
with:
python-version: "3.11"
cache: true
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/sentry-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: "Checkout repository"
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Create Sentry release
uses: getsentry/action-release@v1
- name: "Create Sentry release"
uses: getsentry/action-release@4744f6a65149f441c5f396d5b0877307c0db52c7 # v1.4.1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
Expand Down

0 comments on commit 4f15192

Please sign in to comment.