Use Get but not Post to get actions artifacts (#29734) (#29737)

backport #29734
This commit is contained in:
Lunny Xiao 2024-03-13 00:31:45 +08:00 committed by GitHub
parent 4bfc43ef8d
commit 8c31456a87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ import {createApp} from 'vue';
import {toggleElem} from '../utils/dom.js';
import {getCurrentLocale} from '../utils.js';
import {renderAnsi} from '../render/ansi.js';
import {POST} from '../modules/fetch.js';
import {GET, POST} from '../modules/fetch.js';
const sfc = {
name: 'RepoActionView',
@ -196,7 +196,7 @@ const sfc = {
},
async fetchArtifacts() {
const resp = await POST(`${this.actionsURL}/runs/${this.runIndex}/artifacts`);
const resp = await GET(`${this.actionsURL}/runs/${this.runIndex}/artifacts`);
return await resp.json();
},