Skip to content

Commit 923b2d8

Browse files
committed
Trust semver in github actions
We don't use github actions for anything production critical, so it seems fine to trust that the promises of semver is kept for these actions rather than having dependabot spam us with patch updates.
1 parent 2ce9125 commit 923b2d8

20 files changed

Lines changed: 58 additions & 58 deletions

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010

1111
steps:
1212
- name: Checkout sources
13-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
13+
uses: actions/checkout@v6
1414
with:
1515
path: src/pg_stat_monitor
1616

1717
- name: Checkout cppcheck sources
18-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18+
uses: actions/checkout@v6
1919
with:
2020
repository: "danmar/cppcheck"
2121
ref: "2.13.4"
@@ -43,13 +43,13 @@ jobs:
4343

4444
steps:
4545
- name: Clone postgres repository
46-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
46+
uses: actions/checkout@v6
4747
with:
4848
repository: 'postgres/postgres'
4949
ref: 'REL_17_STABLE'
5050

5151
- name: Checkout sources
52-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
52+
uses: actions/checkout@v6
5353
with:
5454
path: 'contrib/pg_stat_monitor'
5555

@@ -87,9 +87,9 @@ jobs:
8787

8888
steps:
8989
- name: Checkout sources
90-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
90+
uses: actions/checkout@v6
9191

9292
- name: Check license headers
93-
uses: apache/skywalking-eyes/header@61275cc80d0798a405cb070f7d3a8aaf7cf2c2c1 # v0.8.0
93+
uses: apache/skywalking-eyes/header@v0.8.0
9494
with:
9595
token: "" # Prevent comments

.github/workflows/code-coverage-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Clone postgres repository
19-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19+
uses: actions/checkout@v6
2020
with:
2121
repository: 'postgres/postgres'
2222
ref: 'REL_15_STABLE'
@@ -83,7 +83,7 @@ jobs:
8383
pg_ctl -D /opt/pgsql/data -l logfile start
8484
8585
- name: Clone pg_stat_monitor repository
86-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
86+
uses: actions/checkout@v6
8787
with:
8888
path: 'src/pg_stat_monitor'
8989

@@ -113,7 +113,7 @@ jobs:
113113
working-directory: src/pg_stat_monitor
114114

115115
- name: Upload
116-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
116+
uses: codecov/codecov-action@v5
117117
with:
118118
verbose: true
119119
token: ${{ secrets.CODECOV_TOKEN }}
@@ -130,7 +130,7 @@ jobs:
130130

131131
- name: Upload logs on fail
132132
if: ${{ failure() }}
133-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
133+
uses: actions/upload-artifact@v6
134134
with:
135135
name: Regressions diff and postgresql log
136136
path: |

.github/workflows/pgxn-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
shell: bash
2323

2424
- name: Check out
25-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
25+
uses: actions/checkout@v6
2626
with:
2727
ref: '${{ inputs.version }}'
2828

.github/workflows/pmm-integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222

2323
steps:
2424
- name: Clone QA Integration
25-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
25+
uses: actions/checkout@v6
2626
with:
2727
repository: Percona-Lab/qa-integration
2828
ref: main
2929
path: qa-integration
3030

3131
- name: Clone PMM UI tests
32-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
uses: actions/checkout@v6
3333
with:
3434
repository: percona/pmm-ui-tests
3535
ref: main
@@ -67,7 +67,7 @@ jobs:
6767
run: docker exec pdpgsql_pmm_${{ matrix.postgresql }}_1 cat /var/log/pmm-agent.log > ./pmm-ui-tests/tests/output/pmm-agent.log
6868

6969
- name: Upload artifacts
70-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
70+
uses: actions/upload-artifact@v6
7171
if: failure()
7272
with:
7373
name: tests-artifact

.github/workflows/postgresql-14-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone postgres repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
repository: 'postgres/postgres'
2323
ref: 'REL_14_STABLE'
@@ -83,7 +83,7 @@ jobs:
8383
pg_ctl -D /opt/pgsql/data -l logfile start
8484
8585
- name: Clone pg_stat_monitor repository
86-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
86+
uses: actions/checkout@v6
8787
with:
8888
path: 'src/pg_stat_monitor'
8989

@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: Upload logs on fail
120120
if: ${{ failure() }}
121-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
121+
uses: actions/upload-artifact@v6
122122
with:
123123
name: Regressions diff and postgresql log
124124
path: |
@@ -140,7 +140,7 @@ jobs:
140140
run: make installcheck-world
141141

142142
- name: Report on installcheck-world test suites fail
143-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
143+
uses: actions/upload-artifact@v6
144144
if: ${{ failure() }}
145145
with:
146146
name: Regressions output files of failed testsuite, and pg log

.github/workflows/postgresql-14-pgdg-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone pg_stat_monitor repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
path: 'src/pg_stat_monitor'
2323

@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Upload logs on fail
8080
if: ${{ failure() }}
81-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: Regressions diff and postgresql log
8484
path: |

.github/workflows/postgresql-14-ppg-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone pg_stat_monitor repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
path: 'src/pg_stat_monitor'
2323

@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: Upload logs on fail
9494
if: ${{ failure() }}
95-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
95+
uses: actions/upload-artifact@v6
9696
with:
9797
name: Regressions diff and postgresql log
9898
path: |

.github/workflows/postgresql-15-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone postgres repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
repository: 'postgres/postgres'
2323
ref: 'REL_15_STABLE'
@@ -83,7 +83,7 @@ jobs:
8383
pg_ctl -D /opt/pgsql/data -l logfile start
8484
8585
- name: Clone pg_stat_monitor repository
86-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
86+
uses: actions/checkout@v6
8787
with:
8888
path: 'src/pg_stat_monitor'
8989

@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: Upload logs on fail
120120
if: ${{ failure() }}
121-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
121+
uses: actions/upload-artifact@v6
122122
with:
123123
name: Regressions diff and postgresql log
124124
path: |
@@ -140,7 +140,7 @@ jobs:
140140
run: make installcheck-world
141141

142142
- name: Report on installcheck-world test suites fail
143-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
143+
uses: actions/upload-artifact@v6
144144
if: ${{ failure() }}
145145
with:
146146
name: Regressions output files of failed testsuite, and pg log

.github/workflows/postgresql-15-pgdg-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone pg_stat_monitor repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
path: 'src/pg_stat_monitor'
2323

@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Upload logs on fail
8080
if: ${{ failure() }}
81-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: Regressions diff and postgresql log
8484
path: |

.github/workflows/postgresql-15-ppg-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
steps:
1919
- name: Clone pg_stat_monitor repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@v6
2121
with:
2222
path: 'src/pg_stat_monitor'
2323

@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: Upload logs on fail
9494
if: ${{ failure() }}
95-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
95+
uses: actions/upload-artifact@v6
9696
with:
9797
name: Regressions diff and postgresql log
9898
path: |

0 commit comments

Comments
 (0)