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
6 changes: 3 additions & 3 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Skip message
if: steps.check.outputs.build_needed == 'false'
run: echo "No changes in gatewayApi, skipping build"
- uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
- uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
if: steps.check.outputs.build_needed == 'true'
with:
registry: docker.pkg.github.com
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Skip message
if: steps.check.outputs.build_needed == 'false'
run: echo "No changes in gatewayJobScheduler, skipping build"
- uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
- uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
if: steps.check.outputs.build_needed == 'true'
with:
registry: docker.pkg.github.com
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Skip message
if: steps.check.outputs.build_needed == 'false'
run: echo "No changes in kubeApi, skipping build"
- uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
- uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
if: steps.check.outputs.build_needed == 'true'
with:
registry: docker.pkg.github.com
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
echo "Got release version ${{ steps.release.outputs.version }}"

- name: Create gwa-api docker image related to the release
uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
Expand All @@ -87,7 +87,7 @@ jobs:
tag_with_sha: false

- name: Create gwa-kube-api docker image related to the release
uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
Expand All @@ -100,7 +100,7 @@ jobs:
tag_with_sha: false

- name: Create gwa-scheduler docker image related to the release
uses: docker/build-push-action@3e7a4f6646880c6f63758d73ac32392d323eaf8f # v1
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down
Loading