Skip to content

Commit ff75176

Browse files
committed
chore: update GitHub Actions versions
1 parent 7f4b77c commit ff75176

File tree

9 files changed

+29
-29
lines changed

9 files changed

+29
-29
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Install Go
16-
uses: actions/setup-go@v6
16+
uses: actions/setup-go.4.0@v6
1717
with:
1818
go-version: 1.23
1919

20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout.0.2@v6
2121

2222
- name: setup git access to private repos
2323
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/sprintertech/".insteadOf "https://github.com/sprintertech/"
2424

2525
- name: golangci-lint
26-
uses: golangci/golangci-lint-action@v9
26+
uses: golangci/golangci-lint-action.2.0@v9
2727
with:
2828
args: --timeout=10m
2929
only-new-issues: true

.github/workflows/deploy-portainer-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout.0.2@v6
3030
with:
3131
clean: true
3232

.github/workflows/mocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
mocks-check:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout.0.2@v6
1717

1818
- name: setup git access to private repos
1919
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/sprintertech/".insteadOf "https://github.com/sprintertech/"
2020

21-
- uses: actions/setup-go@v2
21+
- uses: actions/setup-go.4.0@v6
2222
with:
2323
go-version: "^1.23"
2424

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Validate PR title
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: amannn/action-semantic-pull-request@v4
12+
- uses: amannn/action-semantic-pull-request.1.1@v6
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
with:

.github/workflows/publish-binaries.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,42 +17,42 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v2
20+
uses: actions/checkout.0.2@v6
2121

22-
- uses: actions/setup-go@v3
22+
- uses: actions/setup-go.4.0@v6
2323
with:
2424
go-version: '1.23'
2525

2626
- name: Build
2727
run: make build-all
2828

2929
- name: Archive Linux 64
30-
uses: thedoctor0/zip-release@master
30+
uses: thedoctor0/zip-release@0.7.6
3131
with:
3232
filename: 'relayer-linux-amd64.zip'
3333
directory: 'build/linux-amd64/'
3434

3535
- name: Archive Linux Arm
36-
uses: thedoctor0/zip-release@master
36+
uses: thedoctor0/zip-release@0.7.6
3737
with:
3838
filename: 'relayer-linux-arm.zip'
3939
directory: 'build/linux-arm/'
4040

4141
- name: Archive Darwin 64
42-
uses: thedoctor0/zip-release@master
42+
uses: thedoctor0/zip-release@0.7.6
4343
with:
4444
filename: 'relayer-darwin-amd64.zip'
4545
directory: 'build/darwin-amd64/'
4646

4747
- name: Archive Darwin Arm 64
48-
uses: thedoctor0/zip-release@master
48+
uses: thedoctor0/zip-release@0.7.6
4949
with:
5050
filename: 'relayer-darwin-arm64.zip'
5151
directory: 'build/darwin-arm64/'
5252

5353
- name: Upload Linux amd64
5454
id: relayer-linux-amd64
55-
uses: AButler/upload-release-assets@v2.0
55+
uses: AButler/upload-release-assets@v3.0
5656
env:
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858
with:
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Upload Linux arm
6363
id: relayer-linux-arm
64-
uses: AButler/upload-release-assets@v2.0
64+
uses: AButler/upload-release-assets@v3.0
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
with:
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Upload Darwin amd64
7272
id: relayer-darwin-amd64
73-
uses: AButler/upload-release-assets@v2.0
73+
uses: AButler/upload-release-assets@v3.0
7474
env:
7575
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7676
with:
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Upload Darwin arm
8181
id: relayer-darwin-arm64
82-
uses: AButler/upload-release-assets@v2.0
82+
uses: AButler/upload-release-assets@v3.0
8383
env:
8484
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8585
with:

.github/workflows/publish-latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
steps:
2323
# Checkout the repository
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout.0.2@v6
2626

2727
- name: setup git access to private repos
2828
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/sprintertech/".insteadOf "https://github.com/sprintertech/"
2929

3030
# Log in to GHCR
3131
- name: Log in to GHCR
3232
id: ghcr
33-
uses: docker/login-action@v3
33+
uses: docker/login-action.0.0@v4
3434
with:
3535
registry: ${{ env.REGISTRY }}
3636
username: ${{ github.actor }}
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Build and push the Docker image
4141
- name: Build and push Docker image
42-
uses: docker/build-push-action@v5
42+
uses: docker/build-push-action.0.0@v7
4343
with:
4444
context: .
4545
push: true

.github/workflows/publish-tagged.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
steps:
2424
# Checkout the repository
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout.0.2@v6
2727

2828
- name: setup git access to private repos
2929
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/sprintertech/".insteadOf "https://github.com/sprintertech/"
3030

3131
# Log in to GHCR
3232
- name: Log in to GHCR
3333
id: ghcr
34-
uses: docker/login-action@v3
34+
uses: docker/login-action.0.0@v4
3535
with:
3636
registry: ${{ env.REGISTRY }}
3737
username: ${{ github.actor }}
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Build and push the Docker image
4242
- name: Build and push Docker image
43-
uses: docker/build-push-action@v5
43+
uses: docker/build-push-action.0.0@v7
4444
with:
4545
context: .
4646
push: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
1515
steps:
1616

17-
- uses: actions/checkout@v2
18-
- uses: google-github-actions/release-please-action@v3
17+
- uses: actions/checkout.0.2@v6
18+
- uses: google-github-actions/release-please-action.1.1@v4
1919
id: release
2020
with:
2121
token: ${{ secrets.RELEASE_PLEASE_PAT }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Install Go
27-
uses: actions/setup-go@v6
27+
uses: actions/setup-go.4.0@v6
2828
with:
2929
go-version: ${{ matrix.go-version }}
3030
- name: Checkout code
31-
uses: actions/checkout@v5
31+
uses: actions/checkout.0.2@v6
3232
- id: go-cache-paths
3333
run: |
3434
echo "GO_BUILD=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
3535
echo "GO_MOD=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
36-
- uses: actions/cache@v4
36+
- uses: actions/cache.0.4@v5
3737
with:
3838
path: |
3939
${{ steps.go-cache-paths.outputs.GO_BUILD }}
@@ -48,7 +48,7 @@ jobs:
4848
- name: Cover
4949
run: echo "COVER=$(go tool cover -func cover.out | grep total | awk '{print substr($3, 1, length($3)-1)}')" >> $GITHUB_ENV
5050
- name: Create comment
51-
uses: peter-evans/create-or-update-comment@v1
51+
uses: peter-evans/create-or-update-comment.0.0@v5
5252
with:
5353
issue-number: ${{github.event.number}}
5454
body: |

0 commit comments

Comments
 (0)