Skip to content

Commit ac9843c

Browse files
authored
chore(ci): github actions maintenance (#44)
* chore: use new readonly gati role * chore: bump actions/checkout to v5 * chore: bump setup-github-token to v1
1 parent a0c6328 commit ac9843c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/gotron-sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
found: ${{ steps.c.outputs.found }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: ./.github/actions/changes
1919
id: c
2020
with:
@@ -32,7 +32,7 @@ jobs:
3232
go-version: ${{ steps.go-version.outputs.version }}
3333

3434
- name: Check out code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: Run tests
3838
run: cd relayer/gotron-sdk && go test ./...

.github/workflows/integration-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
steps:
2828
- name: Setup GitHub Token
2929
id: setup-github-token
30-
uses: smartcontractkit/.github/actions/setup-github-token@ef78fa97bf3c77de6563db1175422703e9e6674f # setup-github-token@0.2.1
30+
uses: smartcontractkit/.github/actions/setup-github-token@setup-github-token/v1
3131
with:
32-
aws-role-arn: ${{ secrets.AWS_ROLE_ARN_GATI_READONLY }}
32+
aws-role-arn: ${{ secrets.AWS_OIDC_CHAINLINK_READ_ONLY_TOKEN_ISSUER_ROLE_ARN }}
3333
aws-lambda-url: ${{ secrets.AWS_LAMBDA_URL_GATI_READONLY }}
3434
aws-region: ${{ secrets.QA_AWS_REGION }}
3535

@@ -56,7 +56,7 @@ jobs:
5656
fi
5757
5858
- name: Checkout chainlink repo
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
repository: smartcontractkit/chainlink
6262
ref: ${{ env.CUSTOM_CORE_REF || env.DEFAULT_CORE_REF }}
@@ -82,7 +82,7 @@ jobs:
8282
docker buildx build --secret id=GIT_AUTH_TOKEN --build-arg COMMIT_SHA=$(git rev-parse HEAD) -t local_chainlink -f core/chainlink.Dockerfile .
8383
8484
- name: Check out repo
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686

8787
- name: Build chainlink-tron image
8888
run: |

.github/workflows/relayer-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
15+
uses: actions/checkout@v5
1616

1717
- name: Install Nix
1818
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # v31
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Check out code
37-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
37+
uses: actions/checkout@v5
3838

3939
- name: Install Nix
4040
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # v31
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- name: Check out code
57-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
57+
uses: actions/checkout@v5
5858

5959
- name: Install Nix
6060
uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # v31
@@ -73,4 +73,4 @@ jobs:
7373
nix develop -c go run github.com/jmank88/gomods@v0.1.6 -go generate ./...
7474
nix develop -c ./modgraph > go.md
7575
git add --all
76-
git diff --stat --cached --exit-code
76+
git diff --stat --cached --exit-code

.github/workflows/relayer-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ jobs:
3737
secrets:
3838
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID_STAGING }}
3939
AWS_ROLE_PUBLISH_ARN: ${{ secrets.AWS_ROLE_PUBLISH_ARN_STAGING }}
40-
AWS_ROLE_GATI_ARN: ${{ secrets.AWS_ROLE_ARN_GATI_READONLY }}
40+
AWS_ROLE_GATI_ARN: ${{ secrets.AWS_OIDC_CHAINLINK_READ_ONLY_TOKEN_ISSUER_ROLE_ARN }}
4141
AWS_LAMBDA_GATI_URL: ${{ secrets.AWS_LAMBDA_URL_GATI_READONLY }}

0 commit comments

Comments
 (0)