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
4 changes: 2 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 #v6
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # 0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # 0.36.0
with:
format: "sarif"
output: "trivy-results.sarif"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/argo-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Variables
- if: ${{ ! inputs.tag }}
id: pr
uses: bcgov/action-get-pr@bfa713a9ab410c0f0c13126c35983934fc80d15b # v0.1.1
uses: bcgov/action-get-pr@3931962bf13b3f4702d0013ec7c836f752ff1a3b # v0.3.0
- id: vars
run: |
# Tag defaults to explicitly provided input, then PR number, then the branch name
Expand All @@ -70,7 +70,7 @@ jobs:
# Output
echo "tag=${tag}" >> $GITHUB_OUTPUT
- name: Checkout GitOps repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: 'bcgov-c/tenant-gitops-2d982c'
token: ${{ secrets.GITOPS_REPO_PAT }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
package: [api, twm, client]
timeout-minutes: 2
steps:
- uses: shrink/actions-docker-registry-tag@v4
- uses: shrink/actions-docker-registry-tag@v5
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
build-mode: manual

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 #v6

- uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d #v5
- uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 #v5
if: matrix.language == 'csharp'
with:
dotnet-version: 7.0.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-prod-v-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
matrix:
package: [php, nginx]
steps:
- uses: shrink/actions-docker-registry-tag@v4
- uses: shrink/actions-docker-registry-tag@v5
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-test-rc-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
matrix:
package: [api, twm, client]
steps:
- uses: shrink/actions-docker-registry-tag@v4
- uses: shrink/actions-docker-registry-tag@v5
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
Expand All @@ -144,7 +144,7 @@ jobs:
uses: actions/checkout@v6

- name: Create GitHub Pre-release with Release Notes
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ inputs.rc_tag }}
prerelease: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Get PR Number From Event
if: github.event_name == 'push'
id: pr_no
uses: bcgov/action-get-pr@bf6c85d0ed23a151f2829956c140fde87979bbf2 #v0.2.0
uses: bcgov/action-get-pr@3931962bf13b3f4702d0013ec7c836f752ff1a3b #v0.3.0
- name: PR Number
id: pr
run: echo pr=${{ steps.pr_no.outputs.pr || inputs.pr}} >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- id: sha
run: echo "short=sha-${GITHUB_SHA:0:7}" >> $GITHUB_OUTPUT
- uses: shrink/actions-docker-registry-tag@v4
- uses: shrink/actions-docker-registry-tag@v5
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
steps:
- name: PR Number
id: pr
uses: bcgov/action-get-pr@bfa713a9ab410c0f0c13126c35983934fc80d15b #v0.1.1
uses: bcgov/action-get-pr@3931962bf13b3f4702d0013ec7c836f752ff1a3b #v0.3.0

# https://github.com/bcgov/action-builder-ghcr
builds:
Expand All @@ -58,7 +58,7 @@ jobs:
package: [api, client, twm]
timeout-minutes: 10
steps:
- uses: bcgov/action-builder-ghcr@2b24ac7f95e6a019064151498660437cca3202c5 #v4.2.1
- uses: bcgov/action-builder-ghcr@cb2629351c87dd1c2130073e4ebb7233a9653a63 #v4.4.1
with:
package: '${{ matrix.package }}'
build_context: ${{ matrix.package }}
Expand Down
Loading