Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-datebadge-task.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,7 +17,7 @@ jobs:

- name: Build BYOB date badge step
if: ${{ github.ref_name == 'main' }}
uses: RubbaBoy/BYOB@v1
uses: RubbaBoy/BYOB@a4919104bc0ec7cfd7f113e42c405cc45246f2a4 # v1
Comment thread
ptr727 marked this conversation as resolved.
with:
name: lastbuild
label: "Last Build"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-docker-task.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -24,28 +24,28 @@ jobs:
steps:

- name: Checkout step
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup QEMU step
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
with:
platforms: linux/amd64,linux/arm64

- name: Setup Buildx step
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
with:
platforms: linux/amd64,linux/arm64

# Always login to Docker Hub, not just on push, to benefit from
# higher rate limits with a Docker subscription for pulls and cache
- name: Login to Docker Hub step
uses: docker/login-action@v3
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Docker build and push step
uses: docker/build-push-action@v6
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
with:
context: .
push: ${{ inputs.push }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-executable-task.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,12 +25,12 @@ jobs:
steps:

- name: Setup .NET SDK step
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
with:
dotnet-version: 10.x

- name: Checkout code step
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Build executable project step
run: |
Expand All@@ -46,7 +46,7 @@ jobs:
-property:PackageVersion=${{ needs.get-version.outputs.SemVer2 }}

- name: Upload matrix build artifacts step
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: publish-${{ matrix.runtime }}
path: ${{ runner.temp }}/publish
Expand All@@ -61,7 +61,7 @@ jobs:
steps:

- name: Download matrix build artifacts step
uses: actions/download-artifact@v7
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
pattern: publish-*
merge-multiple: true
Expand All@@ -72,7 +72,7 @@ jobs:

- name: Upload build artifacts step
id: artifact-upload-step
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: executable-build
path: ${{ runner.temp }}/Console.7z
6 changes: 3 additions & 3 deletions .github/workflows/build-nugetlibrary-task.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -29,12 +29,12 @@ jobs:
steps:

- name: Setup .NET SDK step
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
with:
dotnet-version: 10.x

- name: Checkout code step
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Build NuGet library project step
run: |
Expand DownExpand Up@@ -63,7 +63,7 @@ jobs:

- name: Upload build artifacts step
id: artifact-upload-step
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: nugetlibrary-build
path: ${{ runner.temp }}/NuGetLibrary.7z
Loading
Loading