Skip to content

Commit 7fc95fa

Browse files
ci(deps): bump the github-actions group across 1 directory with 9 updates
--- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: benchmark-action/github-action-benchmark dependency-version: 1.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: WyriHaximus/github-action-get-previous-tag dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b69b2d1 commit 7fc95fa

23 files changed

+95
-95
lines changed

.github/workflows/benchmark.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ matrix.os }}
3131
timeout-minutes: 30
3232
steps:
33-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
33+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3434
with:
3535
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
3636
fetch-depth: 0
@@ -63,7 +63,7 @@ jobs:
6363
echo "OS_VERSION=$(sw_vers -productVersion | cut -d '.' -f 1)" >> $GITHUB_ENV
6464
echo "ARCH=$(uname -m)" >> $GITHUB_ENV
6565
- name: Store benchmark result
66-
uses: benchmark-action/github-action-benchmark@4bdcce38c94cec68da58d012ac24b7b1155efe8b # v1.20.7
66+
uses: benchmark-action/github-action-benchmark@a7bc2366eda11037936ea57d811a43b3418d3073 # v1.21.0
6767
with:
6868
name: Finch Benchmark
6969
tool: 'go'

.github/workflows/build-and-test-deb.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
version="0.0.1+${{ github.sha }}"
5454
fi
5555
echo "version=$version" >> ${GITHUB_OUTPUT}
56-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
56+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5757
with:
5858
ref: ${{ steps.check-tag.outputs.tag }}
5959
fetch-depth: 0
@@ -80,21 +80,21 @@ jobs:
8080
timeout-minutes: 60
8181
steps:
8282
- name: Configure AWS credentials
83-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
83+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
8484
with:
8585
role-to-assume: ${{ secrets.DEB_ROLE_PROD }}
8686
role-session-name: ubuntu-deb
8787
aws-region: us-west-2
8888
- name: Clean ubuntu runner workspace
8989
run: |
9090
rm -rf ${{ github.workspace }}/*
91-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
91+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9292
with:
9393
ref: ${{ needs.get-tag-and-version.outputs.commit }}
9494
fetch-depth: 0
9595
persist-credentials: false
9696
submodules: true
97-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
97+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
9898
with:
9999
go-version: ${{ env.GO_VERSION }}
100100
cache: false

.github/workflows/build-and-test-msi.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
version="0.0.1"
5454
fi
5555
echo "version=$version" >> ${GITHUB_OUTPUT}
56-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
56+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5757
with:
5858
ref: ${{ steps.check-tag.outputs.tag }}
5959
fetch-depth: 0
@@ -78,25 +78,25 @@ jobs:
7878
git config --global core.autocrlf false
7979
git config --global core.eol lf
8080
- name: Set up Python
81-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
81+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
8282
with:
8383
python-version: '3.x'
8484
- name: Install AWS CLI
8585
run: |
8686
python -m pip install --upgrade pip
8787
pip install awscli
88-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
88+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
8989
with:
9090
go-version: ${{ env.GO_VERSION }}
9191
cache: false
92-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
92+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9393
with:
9494
ref: ${{ needs.get-tag-name.outputs.commit }}
9595
fetch-depth: 0
9696
persist-credentials: false
9797
submodules: recursive
9898
- name: configure aws credentials
99-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
99+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
100100
with:
101101
role-to-assume: ${{ secrets.WINDOWS_ROLE }}
102102
role-session-name: windows-msi
@@ -152,7 +152,7 @@ jobs:
152152
throw "Failed after $maxRetries attempts."
153153
}
154154
- name: configure aws credentials for upload signed MSI to installer bucket
155-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
155+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
156156
with:
157157
role-to-assume: ${{ secrets.ROLE }}
158158
role-session-name: windows-msi
@@ -186,18 +186,18 @@ jobs:
186186
git config --global core.autocrlf false
187187
git config --global core.eol lf
188188
- name: Set up Python
189-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
189+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
190190
with:
191191
python-version: '3.x'
192192
- name: Install AWS CLI
193193
run: |
194194
python -m pip install --upgrade pip
195195
pip install awscli
196-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
196+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
197197
with:
198198
go-version: ${{ env.GO_VERSION }}
199199
cache: false
200-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
200+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
201201
with:
202202
ref: ${{ needs.get-tag-name.outputs.commit }}
203203
fetch-depth: 0
@@ -210,7 +210,7 @@ jobs:
210210
echo "has_creds=$has_creds" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
211211
exit 0 # if $has_creds is false, powershell will exit with code 1 and this step will fail
212212
- name: configure aws credentials
213-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
213+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
214214
with:
215215
role-to-assume: ${{ secrets.ROLE }}
216216
role-session-name: msi-test

.github/workflows/build-and-test-pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fi
4747
echo "using tag=${tag}"
4848
echo "tag=$tag" >> ${GITHUB_OUTPUT}
49-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
49+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5050
with:
5151
ref: ${{ steps.check-tag.outputs.tag }}
5252
fetch-depth: 0

.github/workflows/build-pkg.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
run: |
4848
setopt NULL_GLOB && rm -rf ${{ github.workspace }}/*
4949
shell: zsh {0}
50-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
50+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5151
with:
5252
ref: ${{ inputs.commit }}
5353
fetch-depth: 0
5454
persist-credentials: false
5555
submodules: true
56-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
56+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5757
with:
5858
go-version: ${{ env.GO_VERSION }}
5959
cache: false
@@ -68,7 +68,7 @@ jobs:
6868
shell: zsh {0}
6969

7070
- name: configure aws credentials
71-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
71+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
7272
with:
7373
role-to-assume: ${{ secrets.ROLE }}
7474
role-session-name: dependency-upload-session

.github/workflows/canary-deb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
timeout-minutes: 10
3131
steps:
3232
- name: Checkout canary script
33-
uses: actions/checkout@v6.0.1
33+
uses: actions/checkout@v6.0.2
3434
with:
3535
sparse-checkout: |
3636
scripts/canary-deb.sh

.github/workflows/ci-docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
timeout-minutes: 2
5959
steps:
6060
- name: Pull latest awslabs/git-secrets repo
61-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
61+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6262
with:
6363
repository: awslabs/git-secrets
6464
ref: 1.3.0
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install git secrets from source
6868
run: sudo make install
6969
working-directory: git-secrets
70-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
70+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7171
- name: Scan repository for git secrets
7272
run: |
7373
git secrets --register-aws
@@ -99,8 +99,8 @@ jobs:
9999
runs-on: ubuntu-latest
100100
timeout-minutes: 5
101101
steps:
102-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
103-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
102+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
103+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
104104
with:
105105
go-version: ${{ env.GO_VERSION }}
106106
cache: false
@@ -175,7 +175,7 @@ jobs:
175175
contents: read
176176
timeout-minutes: 2
177177
steps:
178-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
178+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
179179
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
180180
with:
181181
args: '**/*.md'

.github/workflows/ci.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
timeout-minutes: 2
5656
steps:
5757
- name: Pull latest awslabs/git-secrets repo
58-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
58+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5959
with:
6060
repository: awslabs/git-secrets
6161
ref: 1.3.0
@@ -64,7 +64,7 @@ jobs:
6464
- name: Install git secrets from source
6565
run: sudo make install
6666
working-directory: git-secrets
67-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
67+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6868
- name: Scan repository for git secrets
6969
run: |
7070
git secrets --register-aws
@@ -77,12 +77,12 @@ jobs:
7777
outputs:
7878
tag: ${{ steps.latest-tag.outputs.tag }}
7979
steps:
80-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
80+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8181
with:
8282
fetch-depth: 0
8383
- name: 'Get the latest tag'
8484
id: latest-tag
85-
uses: "WyriHaximus/github-action-get-previous-tag@04e8485ecb6487243907e330d522ff60f02283ce" # v1.4.0
85+
uses: "WyriHaximus/github-action-get-previous-tag@61819f33034117e6c686e6a31dba995a85afc9de" # v2.0.0
8686

8787
gen-code-no-diff:
8888
strategy:
@@ -92,8 +92,8 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
timeout-minutes: 5
9494
steps:
95-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
96-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
95+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
96+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
9797
with:
9898
go-version: ${{ matrix.go-version }}
9999
cache: false
@@ -112,8 +112,8 @@ jobs:
112112
run: |
113113
git config --global core.autocrlf false
114114
git config --global core.eol lf
115-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
116-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
115+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
116+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
117117
with:
118118
go-version: ${{ matrix.go-version }}
119119
cache: false
@@ -124,8 +124,8 @@ jobs:
124124
runs-on: ubuntu-latest
125125
timeout-minutes: 5
126126
steps:
127-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
128-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
127+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
128+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
129129
with:
130130
go-version: ${{ env.GO_VERSION }}
131131
cache: false
@@ -156,7 +156,7 @@ jobs:
156156
runs-on: ubuntu-latest
157157
timeout-minutes: 5
158158
steps:
159-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
159+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
160160
- name: Run ShellCheck
161161
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
162162
with:
@@ -166,8 +166,8 @@ jobs:
166166
runs-on: ubuntu-latest
167167
timeout-minutes: 1
168168
steps:
169-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
170-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
169+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
170+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
171171
with:
172172
go-version: ${{ env.GO_VERSION }}
173173
cache: false
@@ -178,8 +178,8 @@ jobs:
178178
runs-on: ubuntu-latest
179179
timeout-minutes: 1
180180
steps:
181-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
182-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
181+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
182+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
183183
with:
184184
go-version: ${{ env.GO_VERSION }}
185185
cache: false
@@ -247,7 +247,7 @@ jobs:
247247
runs-on: ubuntu-latest
248248
timeout-minutes: 5
249249
steps:
250-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
250+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
251251
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
252252
with:
253253
args: '**/*.md'

.github/workflows/e2e-linux.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ jobs:
5252
run: |
5353
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
5454
echo "ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION=node16" >> $GITHUB_ENV
55-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
55+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5656
with:
5757
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
5858
fetch-depth: 0
5959
persist-credentials: false
6060
submodules: recursive
61-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
61+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
6262
with:
6363
go-version: ${{ env.GO_VERSION }}
6464
cache: false
@@ -68,7 +68,7 @@ jobs:
6868
has_creds=${{ (github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name) && github.actor != 'dependabot[bot]' }}
6969
echo "has_creds=$has_creds" >> $GITHUB_OUTPUT
7070
- name: configure aws credentials
71-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
71+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
7272
# this action requires node20, skip on AL2
7373
if: ${{ steps.vars.outputs.has_creds == 'true' && (!(startsWith(inputs.os, 'amazon') && inputs.version == '2' ))}}
7474
with:
@@ -162,7 +162,7 @@ jobs:
162162
echo "VM_SERIAL_REPORT=${{ github.run_id }}-${{ github.run_attempt }}-e2e-vm-serial-report.json" >> $GITHUB_OUTPUT
163163
- name: Upload reports artifact
164164
if: ${{ steps.vars.outputs.has_creds == 'true' && (!(startsWith(inputs.os, 'amazon') && inputs.version == '2' ))}}
165-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
165+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
166166
with:
167167
name: linux-${{ inputs.version }}-test-e2e-${{ inputs.arch }}-${{ github.run_id }}-${{ github.run_attempt }}-e2e-reports
168168
path: ${{ github.workspace }}/reports/${{ github.run_id }}-${{ github.run_attempt }}-*.json

.github/workflows/e2e-macos.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
- name: Clean macOS runner workspace
4646
run: |
4747
rm -rf ${{ github.workspace }}/*
48-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
48+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4949
with:
5050
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
5151
fetch-depth: 0
5252
persist-credentials: false
5353
submodules: recursive
54-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
54+
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5555
with:
5656
go-version: ${{ env.GO_VERSION }}
5757
cache: false
@@ -61,7 +61,7 @@ jobs:
6161
has_creds=${{ (github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name) && github.actor != 'dependabot[bot]' }}
6262
echo "has_creds=$has_creds" >> $GITHUB_OUTPUT
6363
- name: configure aws credentials
64-
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
64+
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
6565
if: ${{ steps.vars.outputs.has_creds == 'true' }}
6666
with:
6767
role-to-assume: ${{ secrets.ROLE }}
@@ -105,7 +105,7 @@ jobs:
105105
echo "VM_SERIAL_REPORT=${{ github.run_id }}-${{ github.run_attempt }}-e2e-vm-serial-report.json" >> $GITHUB_OUTPUT
106106
- name: Upload reports artifact
107107
if: always()
108-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
108+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
109109
with:
110110
name: macos-${{ inputs.version }}-${{ inputs.test-command }}-${{ inputs.arch }}-${{ github.run_id }}-${{ github.run_attempt }}-e2e-reports
111111
path: ${{ github.workspace }}/reports/${{ github.run_id }}-${{ github.run_attempt }}-*.json

0 commit comments

Comments
 (0)